For Static Host Configuration
1. Go to /etc/network/interfaces and append these line
auto br0
iface br0 inet static
address 10.10.0.1
netmask 255.255.0.0
bridge_ports eth1
bridge_fd 9
bridge_hello 2
bridge_maxage 12
bridge_stp off
2. Save the changes.
3. Restart the networking using the command
invoke-rc.d networking restart.
For Dynamic Host Configuration
1. Go to /etc/network/interfaces and append these line
auto br0
iface br0 inet dhcp
bridge_ports eth1
bridge_fd 9
bridge_hello 2
bridge_maxage 12
bridge_stp off
2. Save the changes.
3. Restart the networking using the command
invoke-rc.d networking restart.