On Tue, Apr 28, 2009 at 08:56:57AM +0200, Jaroslav Joska wrote: > Hi all! > I installed OpenBSD on UltraSPARC IIIi machine (SunFire V440) successfully. I > want to install dynamips and dynagen, > but before this procedure I have to make bridge with one real interface and > one virtual interface, because dynagen doesn't > work with real interafces. I did the same things on FreeBSD x86 like this: > > # kldload if_tap > # echo -n > /dev/tap0 > # ifconfig tap0 up > > # ifconfig tap0 > tap0: flags=8943<UP,BROADCAST,RUNNING,PROMISC,SIMPLEX,MULTICAST> mtu 1500 > ether 00:bd:33:3d:03:00 Opened by PID 5145 > > # kldload if_bridge > # ifconfig bridge0 create > # ifconfig bridge0 addm tap0 > # ifconfig bridge0 addm rl0 > # ifconfig bridge0 up > # ifconfig bridge0 > > Can I make the same on OpenBSD sparc? > Sorry for my english, > BG, JJ
Wow. Incredible how complex FreeBSD got. ifconfig tun0 up link0 ifconfig bridge0 up brconfig bridge0 add tun0 add rl0 Will do the trick on OpenBSD. -- :wq Claudio

