问答题 【配置路由器信息】
Current configuration:
!
version 11.3
no service password-encryption
!
hostname r1 //第(1)处
!
enable password 123456 //第(2)处
!
interface Ethemet0
ip address 192.4.1.1 255.255.255.0
!
interface Sefta10
ip address 192.3.1.1 255.255.255.0
encapsulation frame-relay IETF //第(3)处
no ip mroute-cache
bandwidth 4000 //第(4)处
frame-relay map ip 192.163.0.2 100 broadcast //第(5)处
frame-relay lmi-type cisco
!
router ospf 1 //第(6)处
network 202.1.1.0 0.0.0.255 area 0 //第(7)处
network 202.3.1.0 0.0.0.255 area 0
network 202.4.1.0 0.0.0.255 area 0
neighbor 202.1.1.2 //第(8)处
!
……
End
【正确答案】
【答案解析】(1)将路由器命名为r1。
(2)设置密码为123456。
(3)封装数据包格式为IETF的帧中继。
(4)带宽为4000。
(5)映射IP地址与帧中继地址。路由器的IP地址为192.163.0.2,帧中继号码为100,并且允许在线路上传送广播信息。
(6)设置OSPF协议,路由进程ID为1。
(7)设置与路由器相连的网络IP为202.1.1.0,子网掩码的反码为0.0.0.255,网络区域为0。
(8)设置路由器邻居节点地址为202.1.1.2。