In a few weeks im off to university, where the rooms have one single network point, to use the point I have to register my computers MAC address using an internal web page. The point is locked to only respond to that address, any other mac addresses which are plugged in will lock out the point. So, the solution for multi-machines, is a router with a MAC address, OR, I hope a network bridge.
Iv spent all afternoon bridging my internet at home so it plugs into ubuntu which then plugs into a hub to other machines, my question is will it only log the mac address of the ubuntu machine?
For reference if anyone tries this, here is how I did it:
You need 2 network cards in computer
Root Terminal
sudo gedit /etc/network/interface
add to the end:
iface br0 inet dhcp
bridge_ports eth0 eth1
auto br0
SAVE
and in root terminal
ifup br0
