The simple approach to running DynaMIPS on FreeBSD guest under VMware did not work at all. No packets from the LAN reached the DynaMIPS ether interface.
24 hours later, and with the help of Iain and Rob, it was sorted.
It required two hacks as follows:
The first hack was running em1, the interface dynamips was using, through a custom vswitch that had promiscuous mode enabled.
The problem here was that this let packets through so well that it looped and multiplied them. Pings from the same ether LAN had TTLs as low as 220, delays of many seconds, and massive duplication of packets.
The second hack was running it through a bridge/tap interface on FreeBSD. In /etc/rc.conf lingo, that’s
cloned_interfaces="bridge0 tap0"
ifconfig_bridge0="addm em1 addm tap0"
ifconfig_em1=up
ifconfig_tap0=up
and then the dynagen conf file used
fa0/0 = NIO_tap:/dev/tap0
Either hack alone did not work. It took both and one or more rubber chickens. The result looked like the following:
.--------------------------.
| |
| .----------------------. |
| | | |
| | .------------------. | |
| | | | | |
| | | DynaMIPS | | |
| | | | | |
| | | | | |
| | | fa 0/0 | | |
| | `--------------|---' | |
| | | | |
| | tap0 | |
| | FreeBSD | | |
| | bridge0 | |
| | | | |
| | em0 em1 | |
| `---|------------|-----' |
| | | |
| vswitch vswitch |
| | | |
| `------------' |
| | |
| ESXi | |
`------------|-------------'
|
/--~~-----------~~--/
LAN
The DynaGen configuration then looked like
[localhost]
[[7200]]
model = 7200
image = images/c7200-adventk9-mz-rpki26-v152_1_s_xe35_tr-bl30.unzip
ram = 2048
npe = npe-400
idlepc = 0x6204bd2c
ghostios = True
[[router r0]]
console = 2001
aux = 3001
fa0/0 = NIO_tap:/dev/tap0