一、配置路由器接口

使路由器可访问,必须配置路由器接口。思科路由器上有许多不同类型的接口。此下示例中,思科 1941 路由器配备以下接口:

两个千兆以太网接口 - GigabitEthernet 0/0 (G0/0) 和 GigabitEthernet 0/1 (G0/1)
两个接口组成的一个串行 WAN 接口卡 (WIC) - Serial 0/0/0 (S0/0/0) 和 Serial 0/0/1 (S0/0/1)
注:点击 此处有关接口缩写和编号的更多信息

配置路由器接口与在交换机上配置管理 SVI 有相似之处。

尽管不必要,仍建议为每个接口配置说明文字,以帮助记录网络信息。说明文字最长不能超过 240 个字符。使用description description-text命令即可。使用 no shutdown 命令可激活接口类似于启动接口。接口还必须连接到另一台设备(交换机或路由器),才能使物理层处于活动状态。

R1(config)# interface GigabitEthernet 0/1			// 进入路由器的某个接口并进行配置
R1(config-if)# ip address 192.168.11.1 255.255.255.0	// 配置接口的IP地址和子网掩码
R1(config-if)# description LAN-11				// 设置每个接口的
R1(config-if)# no shutdown				// 开启端口

二、检验接口配置

最常用的是 show ip interface brief 命令。生成的输出显示所有接口、其 IPv4 地址和当前状态已配置和连接的接口的状态和协议均会显示“up”。显示任何其他内容均表示配置或布线出现问题。
例如:

R1# show ip interface brief

Interface           IP-Address      OK?  Method Status                Protocol  
 
GigabitEthernet0/0  192.168.10.1    YES  manual up                     up
GigabitEthernet0/1  192.168.11.1    YES  manual up                     up
Serial0/0/0         209.165.200.225 YES  manual up                     up
Serial0/0/1         unassigned      YES  NVRAM  administratively down  down
Vlan1               unassigned      YES  NVRAM  administratively down  down

# 该输出表明 LAN 接口和 WAN 链路均已激活并可以运行。
# 注意,ping 命令生成的五个感叹号可以确认到 R2 是连通的。

您可以使用 ping 命令验证接口连接。思科路由器发送五个连续的 ping,并测量最小、平均和最大往返时间。感叹号用于验证连接(五个感叹号则表示连接成功)
例如:

R1# ping 209.165.200.226

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 209.165.200.226,
timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5),
round-trip min/avg/max = 1/2/9 ms
R1#

其他接口验证命令包括:

  • show ip route - 显示存储在 RAM 中的 IPv4 路由表的内容。
  • show interfaces - 显示设备上所有接口的统计信息。
  • show ip interface - 显示路由器上所有接口的 IPv4 统计信息。

show ip route 命令验证了路由器在所有直连网络的路由表中都有条目。

R1# show ip route

Codes: L - local, C - connected, S - static, R - RIP,
       M - mobile, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, 
       IA - OSPF inter area
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1,  E2 - OSPF external type 2, E - EGP
       i - IS-IS, L1 - IS-IS level-1,
       L2 - IS-IS level-2, ia - IS-IS inter area
       * - candidate default, U - per-user static route, o - ODR
       P - periodic downloaded static route

Gateway of last resort is not set

     192.168.10.0/24 is variably subnetted, 2 subnets, 3 masks
C       192.168.10.0/24 is directly connected, GigabitEthernet0/0
L       192.168.10.1/32 is directly connected, GigabitEthernet0/0
     192.168.11.0/24 is variably subnetted, 2 subnets, 3 masks
C       192.168.11.0/24 is directly connected, GigabitEthernet0/1
L       192.168.11.1/32 is directly connected, GigabitEthernet0/1
     209.165.200.0/24 is variably subnetted, 2 subnets, 3 masks
C       209.165.200.224/30 is directly connected, Serial0/0/0
L       209.165.200.225/32 is directly connected, Serial0/0/0
R1#

记住使用 copy running-config startup-config 命令保存配置。