Options

olive: "ping: sendto: No route to host" after a restart

opticalcopticalc Registered Users Posts: 2 ■□□□□□□□□□
So I get a brand new olive configured with vlan trunking, ospf, and BGP to a cisco router in GNS3/QEMU, and everything works great. Then after a request system power-off, and I stop it in GNS3, then restart it in GNS3, the olive cant even ping its own em0.16 ip address (16.16.16.6/24) It can ping lo0.0 (6.0.0.1/24)
--- JUNOS 10.1R1.8 built 2010-02-12 17:15:05 UTC
root@% cli
root> ping 16.16.16.6
PING 16.16.16.6 (16.16.16.6): 56 data bytes
ping: sendto: No route to host
^C
--- 16.16.16.6 ping statistics ---
1 packets transmitted, 0 packets received, 100% packet loss

root> show interfaces terse
Interface Admin Link Proto Local Remote
cbp0 up up
demux0 up up
dsc up up
em0 down up
em0.16 up down inet 16.16.16.6/24
em0.32767 up down
root> show configuration
## Last commit: 2012-09-14 18:28:04 UTC by root
version 10.1R1.8;
system {
root-authentication {
encrypted-password "$1$KobEa8YS$./lZS38OlMH.vIchcxUnq/"; ## SECRET-DATA
}
syslog {
user * {
any emergency;
}
file messages {
any notice;
authorization info;
}
file interactive-commands {
interactive-commands any;
}
}
}
interfaces {
em0 {
enable;
vlan-tagging;
unit 16 {
vlan-id 16;
family inet {
address 16.16.16.6/24;
}
}
}
lo0 {
unit 0 {
family inet {
address 6.0.0.1/24;
}
}
}
}
routing-options {
autonomous-system 65000;
}
protocols {
bgp {
group peer {
export permit;
neighbor 16.16.16.1 {
peer-as 65000;
}
}
}
ospf {
area 0.0.0.0 {
interface 16.16.16.6;
}
}
}
policy-options {
policy-statement permit {
term network {
from {
route-filter 6.0.0.0/24 exact;
}
then accept;
}
}
}
Sign In or Register to comment.