1.route>en 进入特权状态 2.route#config t 通过端口进行配置 3.在配置状态下 给出E0/S0的ip地址 #int e0/0 #ip add 10.1.8.1 255.255.255.0 #no shut #int s0/0 #ip add 192.168.0.1 255.255.255.252 #en ppp (答应在专线上发送ppp包,假如不写,对于两端都是Cisco路由器是没问题的,会默认为Cisco 自己的打包方式) # no shut 4.给出蓝色家园到ISP的路由,因为蓝色家园只有一个出路,所以给出静态路由 #ip route 0.0.0.0 0.0.0.0 192.168.0.2 或者 #ip route 0.0.0.0 0.0.0.0 serial 0 5.为了保证远程治理的Telnet 必须给出登陆用户 #line vty 0 4 #passWord bluegarden 6.Ctrl+Z退出特权配置状态 wr将配置写入路由器即可 当然以上只是一个基本配置,能够保证数据通道的畅通.但是并没有充分利用路由器的功能,例如:NAT、安全等等。 下面给出一个完整的配置 with NAT(为了明确例子,广域网连接中的子网变成192.168.1.0/24) hostname bluegarden ! enable password bluegarden ! no ip name-server ! ip subnet-zero no ip domain-lookup ip routing ! interface Ethernet 0 no shutdown ip address 10.1.8.1 255.255.255.0 ip address 192.16.1.1 255.255.255.0 ip nat inside ! interface Serial 0 no shutdown ip address 192.168.1.2 255.255.255.0 ip nat outside encapsulation hdlc ip nat pool bluegarden 192.16.1.10 192.168.50 PRefix-length 24 ip nat inside source list 1 pool bluegarden router rip version 2 network 10.1.8.0 255.255.255.0 passive-interface Serial 0 access-list 1 permit 10.1.8.0 0.0.0.255 ! ip classless ! ip route 0.0.0.0 0.0.0.0 Serial 0 no ip http server snmp-server community public RO no snmp-server location no snmp-server contact ! line console 0 password bluegarden login ! line vty 0 4 password bluegarden login ! end >Ctrl Z #wr