單臂路由
建立vlan
switch(config)#vlan 10
switch(config-vlan)#vlan 20
進入介面配置模式分別把對應的介面,加入對應的vlan:
switch(config)#inte***ce fastethernet 0/1
switch(config-if)#switchport mode access
switch(config-if)#switchport access vlan 10
switch(config-if)#inte***ce fastethernet 0/3
switch(config-if)#switchport mode access
switch(config-if)#switchport access vlan 20
把0/2變成trunk口(預設是access口)
switch(config-if)#switchport mode trunk
交換機配置好了
路由器的配置:
router>
router>enable
router#configure terminal
router(config)#inter fas 0/0
router(config-if)#no shutdown
注意:單臂路由的配置父介面一定要no shutdown
router(config-if)#exit
router(config)#int fas 0/0.10
router(config-subif)#encapsulation dot1q 10
注意:在配置ip時一定要先封裝802.1q協議
router(config-subif)#ip address 192.168.10.1 255.255.255.0
router(config-subif)#no shutdown
router(config-subif)#int fas 0/0.20
router(config-subif)#ip address 192.168.20.1 255.255.255.0
router(config-subif)#encapsulation dot1q 20
router(config-subif)#ip address 192.168.20.1 255.255.255.0
router(config-subif)#no shutdown
檢視路由表:
router#show ip route
codes: c - connected, s - static, i - igrp, 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
c 192.168.10.0/24 is directly connected, fastethernet0/0.10
c 192.168.20.0/24 is directly connected, fastethernet0/0.20
在pcip 192.168.10.100
netmask 255.255.255.0
gateway 192.168.10.1
閘道器一定得是路由器對應子藉口的ip,不然會ping不通
使用三層交換機 svi
交換機配置:
switch(config)#vlan 10
switch(config-vlan)#vlan 20
switch(config-vlan)#exi
switch(config)#int vlan 10
switch(config-if)#ip add 192.168.10.1 255.255.255.0
switch(config-if)#no shutdown
switch(config)#int vlan 20
switch(config-if)#ip add 192.168.20.1 255.255.255.0
switch(config-if)#no shutdown
switch(config)#inte***ce fastethernet 0/1
switch(config-if)#switchport mode access
switch(config-if)#switchport access vlan 10
switch(config-if)#inte***ce fastethernet 0/2
switch(config-if)#switchport mode access
switch(config-if)#switchport access vlan 20
switch#show ip route
codes: c - connected, s - static, i - igrp, 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
c 192.168.10.0/24 is directly connected, vlan10
c 192.168.20.0/24 is directly connected, vlan
pc的配置和單臂路由一樣
三層交換機有的需要手動開啟路由功能
ip routing
也可以在二層交換機上連三層交換機做單臂路由
不同主機間的 Docker 容器相互通訊
操作參照了 ubuntu14.0.4為例 宿主主機 ip 192.168.220.131 ifconfig檢視 gateway 192.168.220.2 netstat rn destination 為 0.0.0.0 的 dns 192.168.220.2 cat etc resolv.conf...
不同主機間的 Docker 容器相互通訊
操作參照了 ubuntu14.0.4為例 宿主主機 ip 192.168.220.131 ifconfig檢視 gateway 192.168.220.2 netstat rn destination 為 0.0.0.0 的 dns 192.168.220.2 cat etc resolv.conf...
交換機配置第六講(不同vlan相互通訊)
目錄 1.實驗介紹 2.連線如下 3.配置如下 4.測試聯通性 5.總結。內容為主機a和主機b配置不同的vlan希望他們能夠通訊。即兩台主機vlan不一致如何通訊?裝置規劃 型別名稱 數量終端pc2 交換機s5700 1vlan劃分 vlanid 子網閘道器 2192.168.1.0 24 192....