--
You received this message because you are subscribed to the Google Groups "ns-3-users" group.
To post to this group, send email to ns-3-...@googlegroups.com.
To unsubscribe from this group, send email to ns-3-users+...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/ns-3-users?hl=en.
vtysh -c 'show ip ospf neighbor' and ifconfig
In general, I think your problems lie in this part of the code that you
did not carry forward from csma-line-quagga.py:
< ifnames = ["eth1", "eth0"]
< CsmaExperiment.createnet(self, devhelper, nc,
< addrhelper, mask, ifnames)
< addrhelper.NewNetwork()
The 'createnet' method is creating the interfaces within the container
that are needed for quagga. If you do an ifconfig within your xterms,
you will see that only interface 'lo' is showing. This is probably why
quagga daemons are dying.
The first step to resolve this is to make sure that your containers have
the right interfaces enabled, which either means using the above
'createnet' or creating your own variant if needed.
- Tom
vtysh -c 'show ip ospf route' > route.log
> ...
>
> read more »