1樓:匿名使用者
r0配置:
ip dhcp pool 2
network 192.168.2.0 255.255.255.0
default-router 192.168.2.2
dns-server 8.8.8.8
inte***ce fastethernet0/0
ip address 192.168.1.1 255.255.255.0
no shutdown
ip route 192.168.2.0 255.255.255.0 192.168.1.2
r1配置:
inte***ce fastethernet0/0
ip address 192.168.1.2 255.255.255.0
no shutdown
inte***ce fastethernet0/1
ip address 192.168.2.2 255.255.255.0
no shutdown
ip helper-address 192.168.1.1
思科模擬器 設定路由器的閘道器,配置一臺路由器當pc
2樓:帶刺的陽光
如果沒猜錯。。
你是用pt做的吧。。
。pt是基於軟體環境模擬的,抽風是常有的。
另外。你試試,no ip ?,看看它提示的命令。印象中pt的no ip routing命令有改動。
很想問一句,為什麼要用路由器模擬pc?
3樓:零零發貳號
你的路由器選擇了generic這個了,你選一下1841這個路由器。
思科模擬器兩臺pc一個路由怎麼建立dhcp
4樓:匿名使用者
可以用路由器建立一個dhcp伺服器
具體命令是 在全域性配置模式式輸入ip dhcp pool 名字然後是network 網段的網路地址 子網地址default-router 閘道器地址
dns server dns伺服器ip地址exit 退出
然後在全域性下輸入ip exe-add 需要排出的ip地址中間間隔用逗號,連續的話,中間加空格
這樣就配置好了dhcp。然後ip vlan 是同網段下可以獲取地址。
5樓:
r0配置:
ip dhcp pool 2
network 192.168.2.0 255.255.255.0
default-router 192.168.2.2
dns-server 8.8.8.8
inte***ce fastethernet0/0
ip address 192.168.1.1 255.255.255.0
no shutdown
ip route 192.168.2.0 255.255.255.0 192.168.1.2
r1配置:
inte***ce fastethernet0/0
ip address 192.168.1.2 255.255.255.0
no shutdown
inte***ce fastethernet0/1
ip address 192.168.2.2 255.255.255.0
no shutdown
ip helper-address 192.168.1.1
在思科模擬器的路由器上怎麼配置dhcp伺服器?
6樓:風吹的小羊
1. 開啟思科模擬器軟體,找出一臺2811類的路由器和兩臺2960類的交換機,4臺pc電腦,並用正確的線纜將各個裝置互相連線起來,如下圖所示:
2.給所有裝置都重新命名,路由器命名為r1,一交換機命名為sw1,另一交換機命名為sw2,如下圖所示:
3. 先配置路由器r1先,配置命令為:
r1(config)#int f0/0
r1(config-if)#no sh
再配置路由器裝置的遠端登入和密碼保護,配置命令為:
r1(config)#lin vty 0 4
r1(config-line)#login local
r1(config-line)#username admin password cisco
r1(config-line)#exit
r1(config)#enable secret cisco
r1(config)#service password-encrption (此命令為加密所有口令)
如下圖所示:
4.配置交換機sw1,配置命令是:
sw1(config)#int vlan 1
sw1(config-if)#ip add 192.168.1.2 255.255.255.0
sw1(config-if)#no sh
sw1(config-if)#ex
sw1(config)#ip default-gateway 192.168.1.1
再用相同方法配置sw2,如下圖所示:
5. 配置vlan設定,在sw1上劃分vlan 2,3,將相應埠加入其中,配置命令為:
sw1#conf t
enter configuration commands, one per line. end with cntl/z.
sw1(config)#vlan 2
sw1(config-vlan)#ex
sw1(config)#vlan 3
sw1(config-vlan)#ex
sw1(config)#int f0/4
sw1(config-if)#switchport mode access
sw1(config-if)#switchport access vlan 2
sw1(config-if)#int f0/5
sw1(config-if)#switchport mode access
sw1(config-if)#switchport access vlan 3
sw1(config-if)#ex
用相同方法在sw3上面劃分vlan,並將相應的埠加入其中,如下圖所示:
6.配置單臂路由,實現valn1,2,3之間的互訪,配置sw1介面f0/1為主幹鏈路,配置命令是:
sw1(config)#int f0/1
sw1(config-if)#switchport mode trunk
sw1(config-if)#no sh
如下圖所示:
7.在路由器r1上進行封裝,配置命令如下圖所示:
r1#conf t
enter configuration commands, one per line. end with cntl/z.
r1(config)#int f0/0
r1(config-if)#no shut
r1(config)#int f0/0.1
r1(config-subif)#encapsulation dot1q 1
r1(config-subif)#ip add 192.168.1.1 255.255.255.0
r1(config-subif)#ex
r1(config)#int f0/0.2
r1(config-subif)#encapsulation dot1q 2
r1(config-subif)#ip add 192.168.2.1 255.255.255.0
r1(config-subif)#ex
r1(config)#int f0/0.3
r1(config-subif)#encapsulation dot1q 3
r1(config-subif)#ip add 192.168.3.1 255.255.255.0
r1(config-subif)#no sh
r1(config-subif)#ex
如下圖所示:
8.配置dhcp伺服器,即是配置路由器r1,配置命令是:
r1#enable
r1#conf t
r1(config)#ip dhcp excluded-address 192.168.2.1
r1(config)#ip dhcp pool vlan2
r1(dhcp-config)#net 192.168.2.0 255.255.255.0
r1(dhcp-config)#default-router 192.168.2.1
r1(dhcp-config)#dns-server 100.1.1.2
r1(config)#ip dhcp excluded-address 192.168.3.1
r1(config)#ip dhcp pool vlan3
r1(dhcp-config)#net 192.168.3.0 255.255.255.0
r1(dhcp-config)#dns-server 100.1.1.2
r1(dhcp-config)#ex
9. 現在pc之間可以自動獲取ip地址和閘道器了,如下圖所示:
在思科模擬器上,如何用一臺路由器,一臺交換機,和4臺pc,要求劃分兩個vlan是的pc可訪問不同vlan的pc
7樓:匿名使用者
對交換機的配置:
switch>
switch>
switch>
switch>en
switch>
switch>en
switch#conf t
enter configuration commands, one per line. end with cntl/z.
switch(config)#exit
%sys-5-config_i: configured from console by console
switch#vlan d
switch#vlan database
% warning: it is recommended to configure vlan from config mode,
as vlan database mode is being deprecated. please consult user
documentation for configuring vtp/vlan in config mode.
switch(vlan)#vlan 2 name a
vlan 2 added:
name: a
switch(vlan)#vlan 3 name b
vlan 3 added:
name: b
switch(vlan)#exit
exiting....
switch#conf t
enter configuration commands, one per line. end with cntl/z.
switch(config)#int vlan 2
%link-5-changed: inte***ce vlan2, changed state to upswitch(config-if)#
switch(config-if)#no shu
switch(config-if)#int vlan 3
%link-5-changed: inte***ce vlan3, changed state to upswitch(config-if)#
switch(config-if)#no shu
switch(config-if)#int f0/1
switch(config-if)#sw m ac
switch(config-if)#sw ac vlan 2
%lineproto-5-updown: line protocol on inte***ce vlan2, changed state to upswitch(config-if)#
switch(config-if)#int f0/2
switch(config-if)#sw m ac
switch(config-if)#sw ac vlan 3
%lineproto-5-updown: line protocol on inte***ce vlan3, changed state to upswitch(config-if)#
switch(config-if)#int f0/3
switch(config-if)#sw m ac
switch(config-if)#sw ac vlan 2
switch(config-if)#int f0/4
switch(config-if)#sw m ac
switch(config-if)#sw ac vlan 3
switch(config-if)#int f0/5
switch(config-if)#no shu
switch(config-if)#sw m ac
switch(config-if)#sw m tr
switch(config-if)#exit
switch(config)#exit
%sys-5-config_i: configured from console by console
switch#
對路由器的配置:
press return to get started!
router>
router>
router>en
router#conf t
enter configuration commands, one per line. end with cntl/z.
router(config)#int f0/0
router(config-if)#no shu
%link-5-changed: inte***ce fastethernet0/0, changed state to up
%lineproto-5-updown: line protocol on inte***ce fastethernet0/0, changed state to up
router(config-if)#no ip ad
router(config-if)#no ip address
router(config-if)#int f0/0.1
%link-5-changed: inte***ce fastethernet0/0.1, changed state to up
%lineproto-5-updown: line protocol on inte***ce fastethernet0/0.1, changed state to uprouter(config-subif)#
router(config-subif)#en
router(config-subif)#encapsulation d
router(config-subif)#encapsulation dot1q 2
router(config-subif)#ip ad
router(config-subif)#ip address 192.168.1.1 255.255.255.0
router(config-subif)#int f0/0.2
%link-5-changed: inte***ce fastethernet0/0.2, changed state to up
%lineproto-5-updown: line protocol on inte***ce fastethernet0/0.2, changed state to uprouter(config-subif)#
router(config-subif)#en
router(config-subif)#encapsulation d
router(config-subif)#encapsulation dot1q 3
router(config-subif)#ip ad
router(config-subif)#ip address 192.168.2.1 255.255.255.0
router(config-subif)#exit
router(config)#
我是在模擬
器上做的,你可以看看這些命令,要是不明白的話再問吧。
思科模擬器求大神,思科模擬器,求大神幫我做一下這道題!
sw配置 hostname switch enable password 123456 ip routing spanning tree mode pvst inte ce fastethernet0 1 switchport access vlan 10 switchport mode acces...
思科模擬器怎麼設定交換機IP?是PC資料能傳到交換機小白求
二層交換機vlan可以配一個ip,開啟cli,敲int vlan 1,然後ip add x.x.x.x x.x.x.x 九!州動態ip 支援手機和電腦用的,ip覆蓋全國,ip很多 思科模擬器如何讓pc通過交換機和路由器與另一pc相連,並且能ping通?5 路由器上開啟兩個vlan的dhcp,閘道器就...
兩臺PC機連線一臺思科交換機再連線一臺思科路由器,路由器再連
二層交換機,單臂路由,三層交換機,起路由協議 這個不是單臂路由嗎?一個路由器連線一臺交換機再連線兩臺電腦,怎樣使兩臺電腦不能通訊?10 按圖,理論上是一樣的。實際上是有一臺多了一個關卡。不知道你說不能通訊的確切含義是啥。我猜你是想兩條臺計算機都能通過路由器上網,但互相看不見。如果是,請這樣試試看 在...