Linux bridging UMTS <-> eth0
HiJeg søger efter følgende bridging løsning (ubuntu 9.04)
roaming
gprs modem | <=USB0=> | ppp0 ubuntu server br0 | eth0
Jeg har forsøgt mig med denne løsning (/etc/network/interfaces) udeb at opnå en forbindelse.
auto lo
iface lo inet loopback
# Configure br0 using ifupdown with dhcp and add eth0 to the bridge
auto br0
iface br0 inet dhcp
bridge_ports eth0
# udev calls ifupdown for usb0 when it is created and destroyed. See /etc/udev/rules.d/85-ifupdown.rules
# Tell ifupdown not to assign an IP address and add it to the bridge.
auto usb0
iface usb0 inet manual
up ifconfig $IFACE 0.0.0.0 up
post-up brctl addif br0 usb0
> brctl show viser kun det ene endpont (eth0)
Er der nogen der har en ide til at få dette til at virke?