eNSP單臂路由的搭建與外網的連線

2021-10-05 04:25:09 字數 2331 閱讀 8783

一、網路拓撲圖

二、配置路由器和交換機實現兩台pc機的相互通訊

配置交換機

sys

[huawei]sysname lsw1

[lsw1]vlan batch 10 20

[lsw1]inte***ce ethernet 0/0/1

[lsw1-ethernet0/0/1]port link-type access

[lsw1-ethernet0/0/1]port default vlan 10

[lsw1-ethernet0/0/1]quit

[lsw1]inte***ce ethernet 0/0/2

[lsw1-ethernet0/0/2]port link-type access

[lsw1-ethernet0/0/2]port default vlan 20

[lsw1-ethernet0/0/2]quit

[lsw1]inte***ce gigabitethernet 0/0/1

[lsw1-gigabitethernet0/0/1]port link-type trunk

[lsw1-gigabitethernet0/0/1]port trunk allow-pass vlan 10 20

配置路由器

[huawei]sysname ar1

[ar1]inte***ce gigabitethernet 0/0/1.1

[ar1-gigabitethernet0/0/1.1]ip address 192.168.10.254 24 //ip做為pc機的閘道器

[ar1-gigabitethernet0/0/1.1]dot1q termination vid 10

[ar1-gigabitethernet0/0/1.1]arp broadcast enable

[ar1-gigabitethernet0/0/1.1]quit

[ar1]inte***ce gigabitethernet 0/0/1.2

[ar1-gigabitethernet0/0/1.2]ip address 192.168.20.254 24

[ar1-gigabitethernet0/0/1.2]dot1q termination vid 20

[ar1-gigabitethernet0/0/1.2]arp broadcast enable

配置兩台pc機

測試使用兩台pc機互相ping通

三、ensp單臂路由外網鏈結

(1)更新拓撲圖(加乙個cloud)

右鍵cloud,進入設定,新增埠對映

(2)修改ar1

[ar1]inte***ce gigabitethernet 0/0/2

[ar1-gigabitethernet0/0/2]ip address 192.168.56.2 24 //設定與上面外網的埠對映同乙個網段

[ar1-gigabitethernet0/0/2]quit

[ar1]ip route-static 0.0.0.0 0 192.168.56.1

[ar1]ospf 1

[ar1-ospf-1]default-route-advertise always cost 200 type 1

[ar1-ospf-1]quit

(3)測試

開啟windows系統的cmd。

新增pc機的網段到ar1的ip的靜態路由

之後,嘗試連線兩台pc機,測試是否能夠訪問到

ensp實驗單臂路由

在交換機和路由器之間僅使用一條物理鏈路連線。在交換機上,把連線到路由器的埠配置成trunk型別的埠,並允許相關vlan的幀通過。在路由器上需要建立子介面,邏輯上把連線路由器的物理鏈路分成了多條。乙個子介面代表了一條歸屬於某個vlan的邏輯鏈路。配置子介面時,需要注意以下幾點 先配置好pc的 ip位址...

華為ENSP 單臂路由

結構拓撲圖 pc端配置 pc1ip 192.168.1.1 子網掩碼 255.255.255.0 閘道器 192.168.1.254 pc2ip 192.168.2.1 子網掩碼 255.255.255.0 閘道器 192.168.2.254 pc3ip 192.168.3.1 子網掩碼 255.2...

ensp 單臂路由實驗

搭建如下拓撲 交換機 建立vlan10 20 g0 0 1介面設定訪問型別為access,加入到vlan10 g0 0 2介面設定訪問型別為access,加入到vlan20 g0 0 3介面設定為trunk,允許所有vlan通過 路由器 建立子介面g0 0 0.10,ip位址設定為192.168.1...