使用Cisco Packer Trace:三層交換器+路由器共用上網

來源:互聯網
上載者:User

今天早上起來逛論壇的時候,看見一篇文章。問如何解決以下的這個問題?

一台思科三層交換器劃分3個vlan  
vlan 2:ip 192.168.1.1 255.255.255.0  192.168.1.254 網段
vlan 3 :ip  192.168.2.1 255.255.255.0  192.168.2.254
vlan 4 ip   192.168.3.1 255.255.255.0  192.168.3.254
各vlan 之間能互相通迅.
現在增加1台cisco路由想實現共用上網
cisco 路由器配置NAT,如何使用靜態路由協議,實現各vlan上公網。

拓撲圖如下:

我這裡再說清楚一點嘛!我們的PC0、PC1處在VLAN2中,PC2、PC3處在VLAN3中,Server0處在VLAN4中。現在要使我們內網能夠正常訪問我們的Server0伺服器,然後同時還要能夠訪問我們的ISP外網的WWW伺服器。

那麼我們現在從三層交換器開始來配置,我們現在來看看如何配置呢?

Switch#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Switch(config)#vlan 2    建立VLAN2
Switch(config-vlan)#exi
Switch(config)#vlan 3    建立VLAN3
Switch(config-vlan)#exi
Switch(config)#vlan 4    建立VLAN4
Switch(config-vlan)#exit
Switch(config)#int fa0/1     將我們的fa0/1添加到VLAN2中
Switch(config-if)#sw mo ac
Switch(config-if)#sw ac vlan 2
Switch(config-if)#exit
Switch(config)#int fa0/2    將我們的FA0/2添加到VLAN3中
Switch(config-if)#sw mo ac
Switch(config-if)#sw ac vlan 3
Switch(config-if)#exit
Switch(config)#int fa0/3    將我們的FA0/3添加到VLAN4中
Switch(config-if)#sw mo ac
Switch(config-if)#sw ac vlan 4
Switch(config-if)#exit
Switch(config)#int vlan 2     給我們的VLAN2添加一個IP地址,用於不同網段之間互相訪問
Switch(config-if)#ip add 192.168.1.1 255.255.255.0
Switch(config-if)#exit
Switch(config)#int vlan 3     給我們的VLAN3添加一個IP地址    
Switch(config-if)#ip add 192.168.2.1 255.255.255.0
Switch(config-if)#exit
Switch(config)#int vlan 4    給我們的VLAN4添加一個IP地址
Switch(config-if)#ip add 192.168.3.1 255.255.255.0
Switch(config-if)#no shut
Switch(config-if)#exit
以下幾行是用給給我們不同的VLAN內的主機自動分配我們的IP地址。
Switch(config)#ip dhcp pool VLAN2
Switch(dhcp-config)#network 192.168.1.0 255.255.255.0
Switch(dhcp-config)#default-router 192.168.1.1
Switch(dhcp-config)#exit
Switch(config)#ip dhcp pool VLAN3
Switch(dhcp-config)#network 192.168.2.0 255.255.255.0
Switch(dhcp-config)#default-router 192.168.2.1
Switch(dhcp-config)#exit
Switch(config)#

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.