CCNP ROUTER(300-101) 문제풀이 NO. 15
CCNP ROUTER(300-101)의 Dump 문제 풀이입니다. 비교적 오래된 Dump이기 때문에 지금은 유효한 Dump가
아닐 수 있으며, 저도 공부하는 입장이기 때문에 잘못된 풀이 및 해답 일 수도 있습니다.
아닐 수 있으며, 저도 공부하는 입장이기 때문에 잘못된 풀이 및 해답 일 수도 있습니다.
그리고 수정해야 할 부분이 있으면 댓글 주시기 바랍니다.
QUESTION NO: 15
A corporate policy requires PPPoE to be enabled and to maintain a connection with the ISP, even if no interesting traffic exists. Which feature can be used to accomplish this task?
A. TCP Adjust
B. Dialer Persistent
C. PPPoE Groups
D. half-bridging
E. Peer Neighbor Route
Explanation
문제 : 관심있는 트래픽이 없더라도 SIP와 연결을 유지할 수 있기 위해 회사 정책에 PPPoE가 필요합니다.
이 작업을 수행하기 위해 사용되는 기능은 어느 것입니까?
A new interface configuration command, dialer persistent, allows a dial-on-demand routing (DDR) dialer profile connection to be brought up without being triggered by interesting traffic.
[새로운 인터페이스 명령어인 dialer persistent는 흥미있는 트래픽에 의해 트리거 되지 않아도, DDR 다이얼러 프로필 연결이 되게 허용합니다.]
When configured, the dialer persistent command starts a timer when the dialer interface starts up and starts the connection when the timer expires.
[새로운 인터페이스 명령어인 dialer persistent는 흥미있는 트래픽에 의해 트리거 되지 않아도, DDR 다이얼러 프로필 연결이 되게 허용합니다.]
When configured, the dialer persistent command starts a timer when the dialer interface starts up and starts the connection when the timer expires.
[설정되면, dialer persistent명령은 다이얼러 인터페이스가 시작 할 때 타이머를 시작하고 타이머가 종료 될 때 연결을 시작 합니다.
If interesting traffic arrives before the timer expires, the connection is still brought up and set as persistent. The command provides a default timer interval, or you can set a custom timer interval.
[타이머가 종료되게 전에 흥미로운 트래픽이 도착하면, 이 연결은 계속 발생하고 지속적으로 설정 됩니다. 이 명령은 기본 타이머 간격을 제공하거나 당신이 타이머 간격을 설정 할 수 있습니다.]
[타이머가 종료되게 전에 흥미로운 트래픽이 도착하면, 이 연결은 계속 발생하고 지속적으로 설정 됩니다. 이 명령은 기본 타이머 간격을 제공하거나 당신이 타이머 간격을 설정 할 수 있습니다.]
DDR(Dial on Demand Routing)
전송국이 요구하면 라우터가 자동으로 회선 스위칭을 접속(on)하고 필요 없을 때는 자동적으로 중지(off)하는 라우팅 기능. 라우터는 계속 작동하는 것처럼 보여주기 때문에 종단국(end station)은 그 세션을 액티브 상태로 간주한다. 다이얼 주문형 라우팅(DDR)을 이용하면 외부 종합 정보 통신망(ISDN: Integrated Services DigitalNetwork) 터미널 어댑터나 모뎀을 사용해 ISDN 회선이나 전화 회선을 통해 라우팅하는 것이 가능하다.
To configure a dialer interface as persistent, use the following commands beginning in global configuration mode:
[다이얼러 인터페이스를 persistent으로 설정하기 위해서, 글로벌 컨피그 모드에서 시작하여 다음 명령을 사용하세요.]
Command
|
Purpose
| |
Step 1
|
Router(config)#interface dialer number
|
Creates a dialer interface and enters interface configuration mode.
|
Step 2
|
Router(config-if)#ip address address mask
|
Specifies the IP address and mask of the dialer interface as a node in the destinatiopn network to be called.
|
Step 3
|
Router(config-if)#encapsulation type
|
Specifies the ecapsulation type.
|
Step 4
|
Router(config-if)#dialer string dial-string class class-name
|
Specifies the remote destination to call and the map class that defines characteristics for calls to this destination.
|
Step 5
|
Router(config-if)#dialer pool number
|
Specifies the dialing pool to use for calls to this destination.
|
Step 6
|
Router(config-if)#dialer-group group-number
|
Assigns the dialer interface to a dialer group.
|
Step 7
|
Router(config-if)#dialer list dialer-group protocol protocol-name{permit | deny | list access-list-number}
|
Specifies an access list by list number or by protocol and list number to define the interesting packets that can trigger a call.
|
Step 8
|
Router(config-if)#dialer remote-name user-name
|
(Optional) Specifies the authentication name of the remote router on the destination subnetwork for a dialer interface.
|
Step 9
|
Router(config-if)#dialer persistent [delay [initial] seconds | max-attempts number]
|
Forces a dialer interface to be connected at all times, even in the absence of interesting traffic.
|
정답은 B 입니다.