Hi all

I'm trying to set up a veth configuration on my eth0.1 (WAN) port, but wasn't successful yet.
I have a WRT54GL with the latest firmware 8.09.1 and the 2.4 kernel.
My ISP is distributing 4 different IP-addresses to my account, that I want to use for multi-NAT.
For that I need 4 virtual nics with different mac-addresses on my wan port.
The IPs are distributed by a DHCP server located on a different LAN segment.

I installed the veth packet an tried the following:

# create a new VETH device veth0 on eth0 with arbitrary mac-address:
vethd

# set device up
ip link set dev veth0 up

# create new bridge containing my wan port (eth0.1) and the virtual device
brctl addbr br-wan
brctl addif br0 eth0.1
brctl addif br0 veth0

Now when I'm trying to obtain an ip-address on any of the two devices, I fail. Do anybody know the correct configuration?

Thank you
daboss