<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Mar 14, 2013 at 2:04 PM, Mike <span dir="ltr"><<a href="mailto:sourceforge@good-with-numbers.com" target="_blank">sourceforge@good-with-numbers.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">---------------------------------------------<br>
iface eth1.18 inet manual<br>
<br>
auto br1.18<br>
iface br1.18 inet static<br>
</blockquote><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">
        gateway 192.168.18.1<br>
</blockquote><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">
iface eth1.17 inet manual<br>
<br>
auto br1.17<br>
iface br1.17 inet static<br>
</blockquote><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">
        gateway 192.168.17.1<br>
</blockquote><div><br></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">
<br>
in /etc/network/interfaces, I got two default routes:<br>
<br>
---------------------------------------------<br>
host$ ip route show<br>
<a href="http://192.168.18.0/24" target="_blank">192.168.18.0/24</a> dev br1.18  proto kernel  scope link  src 192.168.18.2<br>
<a href="http://192.168.17.0/24" target="_blank">192.168.17.0/24</a> dev br1.17  proto kernel  scope link  src 192.168.17.2<br>
default via 192.168.17.1 dev br1.17<br>
default via 192.168.18.1 dev br1.18<br>
---------------------------------------------<br>
<br>
I'm curious how you configured yours.<br>
<div class="im"><br></div></blockquote><div><br></div><div style>You only need to have one gateway.</div><div style><br></div><div style>Think of it this way. Are you familiar with L2 switches (e.g. the old-reliable Cisco 2950-series)? If yes, then configure the host like that. While the switch will have many vlans, usually only one vlan (i.e. the management vlan) will have an IP addrress, and it will only have one gateway as well.  Other interfaces doesn't have IP addresses on the switch side.</div>
<div style><br></div><div style>So on your setup, you can use something like this to create a bridge without IP address for a vlan:</div><div style><br></div><div style><span style="font-family:arial,sans-serif;font-size:13px">iface eth1.17 inet static</span></div>
<div style><div><font face="arial, sans-serif">        address 0.0.0.0</font></div><div><font face="arial, sans-serif">        netmask 0.0.0.0</font></div><div><br></div><span style="font-family:arial,sans-serif;font-size:13px">auto br1.17</span><br style="font-family:arial,sans-serif;font-size:13px">
<span style="font-family:arial,sans-serif;font-size:13px">iface br1.17 inet manual</span><br style="font-family:arial,sans-serif;font-size:13px"><span style="font-family:arial,sans-serif;font-size:13px">        bridge_ports eth1.17</span><br style="font-family:arial,sans-serif;font-size:13px">
<span style="font-family:arial,sans-serif;font-size:13px">        bridge_maxwait 0</span><br style="font-family:arial,sans-serif;font-size:13px"><span style="font-family:arial,sans-serif;font-size:13px">        bridge_fd 0</span><br style="font-family:arial,sans-serif;font-size:13px">
<span style="font-family:arial,sans-serif;font-size:13px">        bridge_stp off</span><br></div><div style><span style="font-family:arial,sans-serif;font-size:13px"><br></span></div><div style>-- </div><div style>Fajar</div>
<div style><br></div><div><br></div><div> </div></div></div></div>