实验二、 路由器的接口配置
拓扑结构:
实验目的:
1
、两台路由器连通,测试
ping
和
telnet
命令。
2
、熟练端口的
IP
添加和删除、开启和关闭
3
、理解路由器中出现的几种端口类型和作用
:s
口和
f
口
4
、创建静态
IP
和主机名的映射
5
、端口标示的添加与删除
实验中所用到的基本命令:
interface
:
{type} {number}
ip address {ip-address} {mask}
clock rate {speed}
no shutdown
description {text}
ip host {hostname} {ip-address}
default interface {type} {number}
试验配置:
路由器
hisap1
配置
hisap1#conf t
hisap1(config)# ine vty 0 4 //
配置
telnet
登录
hisap1(config-line)#password 123456
hisap1(config-line)#login
hisap1(config-line)#exit
hisap1(config)#int serial 1/0 //
进入接口
serial 1/0
hisap1(config-if)#ip address 10.0.0.1 255.255.255.252 //
设置
IP
hisap1(config-if)#no ip address 10.0.0.1 255.255.255.252 //
删除
IP
设置
hisap1(config-if)#
clock rate 64000 //
在实验环境中
两个
S
口相连,必须要设置
DCE
时钟频率,现实环境中则不需要。
hisap1(config-if)#no shutdown //
开启接口
hisap1(config-if)#shutdown //
关闭接口
hisap1(config-line)#exit
hisap1(config)#interface fastEthernet 0/0
hisap1(config-if)#ip address 1.1.1.1 255.255.255.0
hisap1(config-if)#no shutdown
hisap1(config-if)#end
hisap1#
*Mar 1 00:02:16.763: %LINK-3-UPDOWN: Interface Serial1/0, changed state to up
*Mar 1 00:02:17.767: %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial1/0, changed state to up
*Mar 1 00:02:25.147: %SYS-5-CONFIG_I: Configured from console by console
*Mar 1 00:02:43.743: %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial1/0, changed state to down
hisap1#
路由器hisap2配置
hisap2#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
hisap2(config)#
hisap2(config)#line vty 0 4
hisap2(config-line)#password 123456
hisap2(config-line)#login
hisap2(config-line)#exit
hisap2(config)#interface serial 1/0
hisap2(config-if)#ip address 10.0.0.2 255.255.255.252
hisap2(config-if)#no shutdown
hisap2(config-line)#exit
hisap2(config)#interface fastEthernet 0/0
hisap2(config-if)#ip address 2.2.2.2 255.255.255.0
hisap2(config-if)#no shutdown
hisap2(config-if)#end
测试1
hisap1#
hisap1#ping 10.0.0.2
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.0.0.2, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 28/40/52 ms
hisap1#
hisap1#telnet 10.0.0.2
Trying 10.0.0.2 ... Open
User Access Verification
Password:
hisap2>
hisap2#
hisap2#ping 10.0.0.1
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.0.0.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 4/28/44 ms
hisap2#telnet 10.0.0.1
Trying 10.0.0.1 ... Open
User Access Verification
Password:
hisap1>
IP地址与主机名的映射
hisap1#configure terminal
hisap1(config)#ip host hisap2 10.0.0.2 //
将
hisap2
和
10.0.0.2
做映射,
hisap1(config)#end
hisap1#
测试二
hisap1#telnet hisap2
hisap1#ping hisap2
为端口添加标示
hisap1#conf t
hisap1(config)#interface serial 1/0
hisap1(config-if)#description out //
设置此端口的标示信息为
out
;在大型网络中经常会使用到的一个命令,接口太多的情况下,给各个接口分别命名,可以简化后期维护的时间,是接口情况一目了然。
hisap1(config-if)#end
hisap1#
测试三
hisap1#show run
将端口恢复为出厂设置
hisap1#conf t
hisap1(config)#default interface serial 1/0 //
恢复为出厂设置,即删除该端口下的所有配置,在一个端口下配置较多,一个一个删除过于费时费力的情况下使用。
测试三
hisap1#show running-config interface serial 1/0