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

m
no edit summary
mNo edit summary
mNo edit summary
=Factory Default Config=
The factory default config of a FireBrick looks like this:
<syntaxhighlight>
<pre>
<?xml version="1.0" encoding="UTF-8"?>
<config xmlns="http://firebrick.ltd.uk/xml/fb2700/"
</rule-set>
</config>
</syntaxhighlight>
</pre>
 
 
Here we have an example of the FireBrick using NAT:
 
<syntaxhighlight>
<pre>
<?xml version="1.0" encoding="UTF-8"?>
<config xmlns="http://firebrick.ltd.uk/xml/fb2700/"
</rule-set>
</config>
</syntaxhighlight>
</pre>
 
and here the FireBrick is NAT free:
 
<syntaxhighlight>
<pre>
<?xml version="1.0" encoding="UTF-8"?>
<config xmlns="http://firebrick.ltd.uk/xml/fb2700/"
</rule-set>
</config>
</syntaxhighlight>
</pre>
 
 
Here we have an example of setting up VoIP on the FireBrick, inbound and outbound calls, inbound URI calls, and outbound URI calls to AAISP:
 
<syntaxhighlight>
<pre>
<voip send-pre-auth="false" source-ip4="217.169.11.113" source-ip6="2001:8b0:119c:acf2::1">
<carrier name="AASIP+441234567890" allow="81.187.30.110-119 90.155.3.0/24 90.155.103.0/24 2001:8b0:0:30::5060:0/112 2001:8b0:5060::/48"
<telephone name="AAISP-Support" extn="400999" uri="support@aa.net.uk"/>
</voip>
</syntaxhighlight>
</pre>
 
and here we use Direct Dial In, extn= is removed from <carrier> element and ddi= added to <telephone> element:
 
<syntaxhighlight>
<pre>
<voip send-pre-auth="false" source-ip4="217.169.11.113" source-ip6="2001:8b0:119c:acf2::1">
<carrier name="AASIP+441234567890" allow="81.187.30.110-119 90.155.3.0/24 90.155.103.0/24 2001:8b0:0:30::5060:0/112 2001:8b0:5060::/48"
<telephone name="AAISP-Support" extn="400999" uri="support@aa.net.uk"/>
</voip>
</syntaxhighlight>
</pre>
 
 
Here we allow limited IPv6 addresses access to Telnet and HTTP, this avoids you locking yourself out, it also allows AAISP staff to login:
 
<syntaxhighlight>
<pre>
<telnet allow="2001:8b0::/32" local-only="false"/>
<http allow="2001:8b0::/32" local-only="false"/>
</syntaxhighlight>
</pre>
 
then add a user account for AAISP, don't forgot to change password to something else:
 
<syntaxhighlight>
<pre>
<user name="AAISP" password="secret" timeout="1:00:00"/>
</syntaxhighlight>
</pre>
 
[[Category:FireBrick]]
editor
426

edits