Jump to content

This is the support site for Andrews & Arnold Ltd, a UK Internet provider. Information on these pages is generally for our customers but may be useful to others, enjoy!

FireBrick 2700 Configuration: Difference between revisions

Added - Two Lines with 3G Dongle - Bonded
m (Fix Quick Start Config - NAT)
(Added - Two Lines with 3G Dongle - Bonded)
<syntaxhighlight>
<user name="AAISP" password="secret" timeout="1:00:00"/>
</syntaxhighlight>
 
 
=Two Lines with 3G Dongle - Bonded=
 
Ports - LAN is on ports 1 and 2, WAN1 is on port 4, WAN2 is on port 3:
 
<syntaxhighlight>
<port name="LAN" ports="1 2"/>
<port name="WAN2" ports="3"/>
<port name="WAN1" ports="4"/>
</syntaxhighlight>
 
Interface - LAN interface, with DHCP for IPv4 addresses and RA for IPv6 addresses, assumes PPP session is 1500 MTU, if PPP session is 1492 MTU then change 1472 to 1464 in second ra-mtu= element:
 
<syntaxhighlight>
<interface name="LAN" port="LAN" ra-client="false">
<subnet ip="2001:8b0:119c:acf2::1/64 217.169.11.113/29" ra="true" ra-mtu="1412" ra-dns="2001:8b0::2020 2001:8b0::2021" profile="DSL-Down"/>
<subnet ip="2001:8b0:119c:acf2::1/64 217.169.11.113/29" ra="true" ra-mtu="1472" ra-dns="2001:8b0::2020 2001:8b0::2021" profile="DSL-Up"/>
<dhcp name="DHCP" ip="217.169.11.114-118" lease="1:00:00"/>
</interface>
</syntaxhighlight>
 
Interface - WAN interfaces, RA client is enabled:
 
<syntaxhighlight>
<interface name="WAN1" port="WAN1" ra-client="true"/>
<interface name="WAN2" port="WAN2" ra-client="true"/>
</syntaxhighlight>
 
PPP - Connect to both lines, MTU is 1500, timeout is 5 seconds:
 
<syntaxhighlight>
<ppp name="AAISP1" port="WAN1" username="me@a.1" password="secret" mtu="1500" lcp-rate="1" lcp-timeout="5" graph="AAISP1" log="default" nat="false"/>
<ppp name="AAISP2" port="WAN2" username="me@a.2" password="secret" mtu="1500" lcp-rate="1" lcp-timeout="5" graph="AAISP2" log="default" nat="false"/>
</syntaxhighlight>
 
Dongle - Connect over 3G:
 
<syntaxhighlight>
<usb>
<dongle name="AAISP3" username="me@a.3" password="secret" nat="false" graph="AAISP3" log="default"/>
</usb>
</syntaxhighlight>
 
Static Route - Brings up IPv6 default route using IPv4 tunnel when both lines are down or unplugged:
 
<syntaxhighlight>
<route ip="::/0" gateway="81.187.81.6" profile="DSL-Down" comment="IPv6 default route using IPv4 tunnel"/>
</syntaxhighlight>
 
Profiles - Checks if both lines are up or down:
 
<syntaxhighlight>
<profile name="DSL-Down" interval="1" timeout="5" recover="1" ppp="AAISP1 AAISP2" invert="true" comment="DSL is Down"/>
<profile name="DSL-Up" not="DSL-Down" comment="DSL is Up"/>
</syntaxhighlight>
 
editor
426

edits