Lan Turtle configuration

Hi Chaps
I have recently bought a Lan Turtle, a covert Systems Administration and Penetration Testing tool providing stealth remote access, network intelligence gathering, and man-in-the-middle monitoring capabilities. Housed within a generic "USB Ethernet Adapter" case, the LAN Turtle's covert appearance allows it to blend into many IT environments. The device is in fact a small computer running Linux. You can plug it in to host computer via usb and connect a network cable on the 'other end'. The 'other end' will be allocated an IP by DHCP and device will serve an IP for the host. Both networks are bridged now so the host can still access internet and I can ssh to device and do all sorts of pen testing activities from it. Because my Ethical Hacking course is founded by my employer I can use our corporate network as firing range. I connected the device to my PC but I am not on domain any more. I wonder if it would be possible for the PC to still be on the same corporate network. This is the current config of the device:

config interface 'loopback'
option ifname 'lo'
option proto 'static'
option ipaddr '127.0.0.1'
option netmask '255.0.0.0'

config globals 'globals'
option ula_prefix 'fda4:1103:3ec4::/48'

config interface 'lan'
option ifname 'eth0'
option force_link '1'
option type 'bridge'
option proto 'static'
option ipaddr '172.16.84.1'
option netmask '255.255.255.0'
option ip6assign '60'

config interface 'wan'
option ifname 'eth1'
option macaddr '00:e0:4c:36:1c:12'
option proto 'dhcp'

config interface 'vpn'
option ifname 'tun0'
option proto 'dhcp'

config interface 'wan6'
option ifname '@wan'
option proto 'dhcpv6'

So the question is - is it possible to have 'lan' on the same network as 'wan'?
Regards, kanalia

Hi Chaps
I have figured it out myself. Simply go to etc/config/network and change the config for 'lan' to:

config interface 'lan'
option ifname 'eth0 eth1'
option type 'bridge'
option proto 'dhcp'

This bridge will make both adapters visible to target network so both adapters will be allocated an IP by DHCP. Have fun!!