I use the setup as described above by JoW
Then I made a bootup script in /etc/rc.d/ to issue the command "ifup wan"
It works as advertised.
edit: My S95done
#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org
START=95
boot() {
[ -d /tmp/root ] && {
lock /tmp/.switch2jffs
firstboot switch2jffs
lock -u /tmp/.switch2jffs
}
# set leds to normal state
. /etc/diag.sh
# bring wan (3g datacard) up late (modules load late)
ifup wan
set_state done
}
I had to put the command in the last startup script because the usbserial driver loads very late in bootup.
(Last edited by aport on 16 Dec 2008, 22:05)