路由器和交换机的基本配置

路由器配置ip地址:

R1#configure terminal                                             //进入全局配置模式

R1(config)#int f0/0                                                   //进入f0/0接口

R1(config-if)#ip add 192.168.10.1 255.255.255.0    //配置ip地址

R1(config-if)#no shutdown                                      //开启接口

查看接口状态:

R1#show ip interface brief                                      //up是开启 down是关闭

Interface                  IP-Address      OK? Method Status                Protocol

FastEthernet0/0      192.168.10.1    YES manual up                    up     

FastEthernet0/1      unassigned      YES unset  administratively down down 

交换机配置ip地址:

SW1#configure terminal                                               //进入全局配置模式

SW1(config)#int vlan 1                                                 //进入f0/0接口

SW1(config-if)#ip add 192.168.10.2 255.255.255.0      //配置ip地址

SW1(config-if)#no shutdown                                       //开启接口

查看接口状态:

SW1#show ip interface brief                                      //up是开启 down是关闭

Interface                  IP-Address      OK? Method Status                     Protocol

FastEthernet0/0      unassigned      YES unset  administratively down down   

FastEthernet0/1      unassigned      YES unset  administratively down down   

FastEthernet1/0      unassigned      YES unset      up                            down   

……………………

FastEthernet1/15    unassigned      YES unset      up                            down   

Vlan1                      192.168.10.2    YES manual    up                             up

查看arp表:

R1#show arp        

Protocol  Address          Age (min)  Hardware Addr   Type   Interface

Internet  192.168.10.1                 -   cc00.3d88.0000  ARPA   FastEthernet0/0

Internet  192.168.10.2                 0   cc02.3d88.0000  ARPA   FastEthernet0/0

一个接口可以对应多个mac地址     但一个mac地址只能对应一个接口

手动绑定arp:

R1(config)#arp 1.1.1.1 0001.0001.0001 arpa

R1#sh arp

Protocol  Address          Age (min)  Hardware Addr   Type   Interface

Internet  1.1.1.1                           -   0001.0001.0001  ARPA 

Internet  192.168.10.1                 -   cc00.3d88.0000  ARPA   FastEthernet0/0

Internet  192.168.10.2               20   cc02.3d88.0000  ARPA   FastEthernet0/0

路由器需要访问非直连网段时需要配置静态路由

默认路由:当路由器在路由表中找不到目标网络的路由条目时,路由器把请求转发到默认路由接口,默认路由是特殊的静态路由。

默认路由一般用于末梢网络

路由器和交换机的基本配置_第1张图片

R1 f0/0:12.0.0.1/24

R2 f0/0:12.0.0.2/24     f0/1:23.0.0.2/24

R3 f0/1:23.0.0.3/24

静态路由配置:

R1(config)#ip route 23.0.0.0 255.255.255.0 12.0.0.2

                                 网段      掩码                 下一跳地址

23.0.0.0网段的数据包发送到12.0.0.2

默认路由配置:

R1(config)#ip route 0.0.0.0 0.0.0.0 12.0.0.2

                                 网段      掩码                 下一跳地址

所有网段的数据包发送到12.0.0.2

使用ping命令测试网络连通性

R1#ping 23.0.0.3

Type escape sequence to abort.

Sending 5, 100-byte ICMP Echos to 23.0.0.3, timeout is 2 seconds:

!!!!!                   //感叹号代表连通

Success rate is 100 percent (5/5), round-trip min/avg/max = 64/78/92 ms

 

你可能感兴趣的:(网络,服务器)