我刚开始在少年S的世界,然而,我停留在开始。
我在GNS3上运行Junos,具有非常简单的拓扑结构,如
(Junos1-me0)----------------------(me0-Junos2)
我的配置:
Junos1: set interfaces me0 unit 0 family inet address 10.10.10.1/30
Junos2: set interfaces me0 unit 0 family inet address 10.10.10.2/30Junos1:
root> show interfaces terse
Interface Admin Link Proto Local Remote
cbp0 up up
demux0 up up
dsc up up
em0 up up <<// There is no em0.0 and protocol field
em1 up down
em2 up down
em3 up down
em4 up down
em5 up down
gre up up
ipip up up
irb up up
lo0 up up
lo0.16384 up up inet 127.0.0.1 --> 0/0
lo0.16385 up up inet 128.0.0.4 --> 0/0
inet6 fe80::a00:270f:fc83:f167
lsi up up
mtun up up
pimd up up
pime up up
pip0 up up
pp0 up up
tap up up
Junos2:
root> show interfaces terse
Interface Admin Link Proto Local Remote
cbp0 up up
demux0 up up
dsc up up
em0 up up <<// There is no em0.0 and protocol field
em1 up up
em2 up down
em3 up down
em4 up down
em5 up down
gre up up
ipip up up
irb up up
lo0 up up
lo0.16384 up up inet 127.0.0.1 --> 0/0
lo0.16385 up up inet 128.0.0.4 --> 0/0
inet6 fe80::a00:270f:fc37:7cc4
lsi up up
mtun up up
pimd up up
pime up up
pip0 up up
pp0 up up
tap up up我不能平p2p,结果如下:
Junos1> ping 10.10.10.2
PING 10.10.10.2 (10.10.10.2): 56 data bytes
ping: sendto: Can't assign requested address
ping: sendto: Can't assign requested address
ping: sendto: Can't assign requested address
^C
--- 10.10.10.2 ping statistics ---
3 packets transmitted, 0 packets received, 100% packet loss另外,我试图在me0接口上分配另一个单元,但是失败了,系统信息“不能”。
有人能帮我解决这个问题吗?
路由器上没有路由表。
root> show route table ?
Possible completions:
<table> Name of routing table
root> show route table inet.0提前感谢
发布于 2015-07-04 14:07:48
您在GNS3中链接了哪些接口?
通常使用em接口。默认情况下,您不会定义单元0。
将接口从me0移动到相应设备上的em0。这是假定您的GNS3链接设置为将两个设备上的em0映射为连接链接。
设置接口em0单元0家庭内地址x.x/x
通常,对于Junos \GNS3 3,您不会使用ME0..。唯一应该使用的接口是emX或fxpX,这取决于您使用的是哪种模拟接口。理想情况下,如果您使用Intel系列,那么emX接口就会出现。
如果您没有活动的接口或路由,那么就不存在任何表,默认的Junos行为。
https://networkengineering.stackexchange.com/questions/19683
复制相似问题