1楼:匿名用户
以太网接口不是点对点的协议,是无法指定接口的
,也就是说他是以广播方式发送的,下一接口是分不出来具体数据的。如接口是ppp协议的就可以指定了,一般都在路由器上使用
如ip rout 0.0.0.0 0.0.0.0 s0 (串口)
2楼:匿名用户
192.168.1.2 0.0.0.0 0.0.0.0
不需要配置制定**端口
只需要在3层上配置默认的**就可以了吧
3楼:匿名用户
通俗点说,只有下一跳的设备才是网路的开始。
路由器指定一个**出口就行这事我配静态路由时没用到过,只有动态路由才是这么配的。
4楼:
是不是你这款交换机这个功能只能用0-9做这个命令啊??什么交换机?
路由器和三层交换机配置静态路由后不能连通 5
5楼:匿名用户
这种情况一般是静态路由设置为了单向,你试着再加一条由192.168.15.111到192.168.1.1的静态路由,
三层交换机路由配置(静态路由)
6楼:匿名用户
inte***ce vlanif2 //此为pc1的网关
ip address 192.168.1.254 255.255.255.0
inte***ce vlanif12 //此为交换机1和2的直连路由
ip address 1.1.1.1 255.255.255.252
inte***ce gigabitether***0/0/1
port link-type access
port default vlan 2
inte***ce gigabitether***0/0/2
port link-type trunk
port trunk allow-pass vlan 2 5 12
ip route-static 3.3.3.2 255.255.255.252 1.1.1.2
7楼:烟草
你貌似在用hw-routesim在做实验
参考下面的配置和图吧
实验九静态路由实验
pca:10.65.
1.1pcb:10.
66.1.1pcc:
10.70.1.
1pcd:10.71.
1.1[routera]inte***ceether***0
[routera-ether***0]ipaddrress10.65.1.2255.255.0.0
[routera-ether***0]undoshutdown
[routera-ether***0]inte1
[routera-ether***1]ipaddrress10.66.1.2255.255.0.0
[routera-ether***1]undoshutdown
[routera-ether***1]ints1
[routera-serial1]ipaddrress10.68.1.2255.255.0.0
[routera-serial1]undoshutdown
[routera-serial1]clockrate64000
[routera-serial1]quit
[routera]iprouting
[routera]discurr
[routerb]inte***ceether***0
[routerb-ether***0]ipaddrress10.70.1.2255.255.0.0
[routerb-ether***0]undoshutdown
[routerb-ether***0]inte1
[routerb-ether***1]ipaddrress10.71.1.2255.255.0.0
[routerb-ether***1]undoshutdown
[routerb-ether***1]ints0
[routerb-serial0]ipaddrress10.68.1.1255.255.0.0
[routerb-serial0]undoshutdown
[routerb-serial0]quit
[routerb]iprouting
[routerb]discurr
[root@pcaroot]#ifconfigeth010.65.1.1***mask255.255.0.0
[root@pcaroot]#routeadddefaultgw10.65.1.2
[root@pcaroot]#ping10.65.1.2通
[root@pcaroot]#ping10.66.1.2通
[root@pcaroot]#ping10.67.1.2通
[root@pcaroot]#ping10.68.1.2不通
[root@pcaroot]#ping10.69.1.2不通
[routera]iproute-static10.69.0.0255.255.0.010.67.1.1
[root@pcaroot]#ping10.69.1.1通
三个路由器的静态路由(参考实验九图)
设置routera的ip:
f0/0:10.65.1.2--->pca:10.65.1.1
f0/1:10.66.1.2--->pcb:10.66.1.1
s0/0:10.67.1.2
s0/1:10.68.1.2--->接routercs0/0
设置routerc的ip:
s0/0:10.68.1.1<---
s0/1:10.78.1.2--->接routerbs0/0
设置routerb的ip:
s0/0:10.78.1.1<---
s0/1:10.67.1.1
f0/0:10.69.1.2--->pcc:10.69.1.1
f0/1:10.70.1.2--->pcd:10.70.1.1
设置从pca到pcc的静态路由
[roa]iprouting
[roa]iproute-static10.69.0.0255.255.0.010.68.1.1
[roa]displayiproute
[rob]iproute-static10.69.0.0255.255.0.010.78.1.1
[rob]displayiproute
[root@pcaroot]#ping10.69.1.1(通)
[root@pcaroot]#ping10.78.1.1(不通)
[root@pcaroot]#ping10.70.1.1(不通)
为什么pca到10.78.1.1不通呢?它是去10.69.1.1要经过的地方啊,这是由于在
routera上,没有去10.78.0.0网络的路由,所以到这个网络它不知道要向哪去送。
如何让pca到10.70.1.1(pcd)通呢,像10.69.0.0网络一样,在路径的路由器上
,再各写一条到10.70.0.0网络的静态路由就可以了。
如果每一条路径都写一组静态路由显然不好,由于pca在这个网络中实际只有一条
主通路,所以使用默认路由较好。
我们再做一个使用默认路由的小实验,先去掉原有的静态路由。
[roa]undoiproute-static10.69.0.0255.255.0.010.68.1.1
[roa]displayiproute
[roa]undoiproute-static10.69.0.0255.255.0.010.78.1.1
[rob]displayiproute
[root@pcaroot]#ping10.69.1.1(不通)
[roa]iproute-static0.0.0.00.0.0.010.68.1.1
[rob]displayiproute
[rob]iproute-static0.0.0.00.0.0.010.69.1.1
[rob]displayiproute
[root@pcaroot]#ping10.69.1.1(通)
[root@pcaroot]#ping10.70.1.1(通)
[root@pcaroot]#ping10.78.1.1(通)
路由表是路由器实现路由的指导思想。到一个网络通不通,要看路由表中有没有去
目的网络的路由表项,动态路由可以自动创建路由表,定时更新。
[routerb-serial0]undoipaddrress10.67.1.1255.255.0.0
[routerb-serial0]ipaddrress10.70.1.1255.255.0.0
[routerc]inte***ceserial0
[routerc-serial0]ipaddrress10.67.1.1255.255.0.0
[routerc-serial0]undoshutdown
[routerc-serial0]clockrate64000
[routerc-serial0]ints1
[routerc-serial1]ipaddrress10.70.1.1255.255.0.0
[routerc-serial1]undoshutdown
[routerc-serial1]quit
[routerc]iproute-static10.69.0.0255.255.0.010.70.1.1
[routerc]discurr
[root@pcaroot]#ping10.69.1.1通
[root@pcaroot]#ping10.68.1.1不通
思科五台路由器分别各连两台交换机,每个交换机划分了5个vlan,关于静态路由配置问题(不带三层交换机)
8楼:匿名用户
fa/0这时可以不用配置ip地址,只需要在5个子接口配置ip地址来做每个vlan的网关即可。
没有三层交换机,其实有路由器也一样。就算是你用三层交换机,也要在三层上面做5个vlan并给其配置ip地址作为网关,和路由器其实道理差不多。
思科模拟器三层交换机和路由器不通
1楼 匿名用户 方法 步骤 首先,在思科模拟器上找出一台 3560 24ps 交换机,和两台pc,用直通线将它们互相连接起来。 为两台电脑配置ip,网关,pc1的ip地址,子网掩码,网关分别为172 16 1 2,255 255 255 0 172 16 1 1 pc2的ip地址,子网掩码,网关分别...
在思科模拟器中,三层交换机与路由器如何配置链路聚合
1楼 枫 远去 路由器不能做聚合,聚合这个功能是二层的特点。三层交换机之所以能做聚合是因为它既有二层功能又有三层功能,而路由器只有三层功能,所以这两个之间不能做聚合。 2楼 绳嫣宛冰双 第一 图中没有看到路由器,你应该是想说服务器 第二 你的要求只是三台电脑一个服务器三层互通,没有其他要求,那问题就...
如何关闭思科三层交换机的路由功能
1楼 血影飞羽 比如在二层交换机上划分了vlan,有 vlan 2 vlan 3 vlan 4 vlan 2 的网关是 192 168 10 1 vlan 3 的网关是 192 168 20 1 vlan 4 的网关是 192 168 30 1 理论说着绕口 直接给配置你就能明白 vlan data...