LAN路由

简介:
一、实验的目的:
  实现不同子网之前的信息交流
    
二、如果
1、虚拟子网
VMnet8:192.168.233.0/24
VMnet1:172.16.1.0/24
2、虚拟机vm1
ip:192.168.233.3/24,属于子网VMnet8.
三、clone虚拟机
1、vm1未启动时。克隆两虚拟机。分别命名为gate和vm2。gate加入一以太网卡。


2、启动vm2。设置
ip:172.16.1.5/24,属于子网VMnet1。
3、启动gate,设置
eth0:192.168.233.6/24,属于子网VMnet8
eth1:172.16.1.6/24,属于子网VMnet1
4、启动vml,设置
IP:192.168.233.5/24,属于子网VMnet8。


  [root@localhost root]# setup
   设置好ip和子网掩码
  [root@localhost root]# cd /etc/sysconfig/network-scripts
  [root@localhost network-scripts]# cat ifcfg-eth0
  DEVICE=eth0
  ONBOOT=yes
  BOOTPROTO=static
  IPADDR=192.168.233.6
  NETMASK=255.255.255.0
  
  [root@localhost network-scripts]# cp ifcfg-eth0 ifcfg-eth1
  cp:是否覆盖‘ifcfg-eth1’? y
  [root@localhost network-scripts]# vi ifcfg-eth1
  改动同以下一样i
  DEVICE=eth1
  ONBOOT=yes
  BOOTPROTO=static
  IPADDR=172.16.1.6
  NETMASK=255.255.255.0


[root@localhost network-scripts]# service network restart
正在关闭接口 eth0:                                        [  确定  ]
正在关闭接口 eth1:                                        [  确定  ]
关闭环回接口:                                             [  确定  ]
禁用 IPv4 包转送:                                         [  确定  ]
设置网络參数:                                             [  确定  ]
弹出环回接口:                                             [  确定  ]
弹出界面 eth0:                                            [  确定  ]
弹出界面 eth1:                                            [  确定  ]


四、启动转发和加入路由
1、启动gate转发
编辑/etc/sysctl.conf,设置
net.ipv4.ip_forward=1
运行:
#sysctl -p
  [root@localhost network-scripts]# vi /etc/sysctl.conf
    把net.ipv4.ip_forward的值改为1
  [root@localhost network-scripts]# sysctl -p
  net.ipv4.ip_forward = 1
  net.ipv4.conf.default.rp_filter = 1
  kernel.sysrq = 0
  kernel.core_uses_pid = 1




2vml加入路由
#route add -net 172.16.1.0/24 gw 192.168.233.6
  [root@localhost root]#route add -net 172.16.1.0/24 gw 192.168.233.6


3、vm2加入路由
#route add -net 192.168.233.0/24 gw 172.16.1.6
  [root@localhost root]#route add -net 192.168.233.0/24 gw 172.16.1.6
五、測试
1、vm1中
#ping 172.16.1.5
  [root@localhost root]# ping 172.16.1.5
  PING 172.16.1.5 (172.16.1.5) 56(84) bytes of data.
  64 bytes from 172.16.1.5: icmp_seq=1 ttl=63 time=2.07 ms
  64 bytes from 172.16.1.5: icmp_seq=2 ttl=63 time=1.21 ms
  64 bytes from 172.16.1.5: icmp_seq=3 ttl=63 time=0.485 ms
  64 bytes from 172.16.1.5: icmp_seq=4 ttl=63 time=0.649 ms
  64 bytes from 172.16.1.5: icmp_seq=5 ttl=63 time=0.488 ms
  
  通过


2、vm2中
#ping 192.168.233.5
通了吗?
  [root@localhost root]# ping 192.168.233.5
  PING 192.168.233.5 (192.168.233.5) 56(84) bytes of data.
  64 bytes from 192.168.233.5: icmp_seq=1 ttl=63 time=1.59 ms
  64 bytes from 192.168.233.5: icmp_seq=2 ttl=63 time=0.539 ms
  64 bytes from 192.168.233.5: icmp_seq=3 ttl=63 time=0.498 ms
  64 bytes from 192.168.233.5: icmp_seq=4 ttl=63 time=0.725 ms
  64 bytes from 192.168.233.5: icmp_seq=5 ttl=63 time=0.514 ms


  通过




六、显示路由表
1、vm1中
#route
  [root@localhost root]# route -n
  Kernel IP routing table
  Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
  172.16.1.0      192.168.233.6   255.255.255.0   UG    0      0        0 eth0
  192.168.233.0   0.0.0.0         255.255.255.0   U     0      0        0 eth0
  169.254.0.0     0.0.0.0         255.255.0.0     U     0      0        0 eth0
  127.0.0.0       0.0.0.0         255.0.0.0       U     0      0        0 lo


2、gate中
#route
 
  [root@localhost network-scripts]# route -n
  Kernel IP routing table
  Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
  172.16.1.0      0.0.0.0         255.255.255.0   U     0      0        0 eth1
  192.168.233.0   0.0.0.0         255.255.255.0   U     0      0        0 eth0
  169.254.0.0     0.0.0.0         255.255.0.0     U     0      0        0 eth1
  127.0.0.0       0.0.0.0         255.0.0.0       U     0      0        0 lo


七、画出本实验的拓扑图


    _____     ___       _eh0_____eth1      _____      ____
    |____|---|___|------|_____|____|------|_____|----|____|
     VM1      集线器     gate              集线器     VM2   
 




八、实验的体会
    用记事本画拓扑图太难了,实验时搞乱了不同子网。导致putty连不上。






本文转自mfrbuaa博客园博客,原文链接:http://www.cnblogs.com/mfrbuaa/p/5118856.html,如需转载请自行联系原作者

相关文章
|
6月前
|
存储 网络协议 分布式数据库
网络名词术语解析 | 路由、交换机、集线器、半/全双工、DNS、LAN、WAN、端口、MTU
网络名词术语解析 | 路由、交换机、集线器、半/全双工、DNS、LAN、WAN、端口、MTU
151 0
|
7月前
|
网络架构
交换机与路由器技术-12-单臂路由
交换机与路由器技术-12-单臂路由
38 0
|
10月前
|
网络协议 网络虚拟化 网络架构
【网络】· 路由器中配置单臂路由和DHCP,VTP原理
【网络】· 路由器中配置单臂路由和DHCP,VTP原理
132 0
|
11月前
|
监控 网络虚拟化
三层交换机实现VLAN间路由通信
三层交换机实现VLAN间路由通信
109 2
|
网络协议 安全 网络虚拟化
[ 网络协议篇 ] vlan 详解之 单臂路由 详解
[ 网络协议篇 ] vlan 详解之 单臂路由 详解
680 0
[ 网络协议篇 ] vlan 详解之 单臂路由 详解
|
网络协议 网络架构
H3C_RIP_路由器_动态路由
H3C_RIP_路由器_动态路由
H3C_RIP_路由器_动态路由
|
网络协议 网络虚拟化 网络架构
单臂路由与VLAN
单臂路由与VLAN
4715 0
|
网络协议 网络虚拟化 网络架构
|
网络虚拟化 网络架构
|
网络虚拟化 数据安全/隐私保护