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 run-through: Difference between revisions

Content deleted Content added
AA-Andrew (talk | contribs)
Undo revision 271 by AA-Andrew (talk)
AA-Andrew (talk | contribs)
Line 15: Line 15:


The default configuration (or a fully-loaded FireBrick) looks like this:
The default configuration (or a fully-loaded FireBrick) looks like this:
<syntaxhighlight lang="xml">
<pre>&lt;?xml version="1.0" encoding="UTF-8"?&gt;
<?xml version="1.0" encoding="UTF-8"?>
&lt;config xmlns="http://firebrick.ltd.uk/xml/fb2700/"
<config xmlns="http://firebrick.ltd.uk/xml/fb2700/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://firebrick.ltd.uk/xml/fb2700/
xsi:schemaLocation="http://firebrick.ltd.uk/xml/fb2700/
http://firebrick.ltd.uk/xml/fb2700/0.00.605.xsd"
http://firebrick.ltd.uk/xml/fb2700/0.00.605.xsd"
timestamp="1970-01-01T00:00:07Z"&gt;
timestamp="1970-01-01T00:00:07Z">
&lt;port name="LAN1" ports="1"/&gt;
<port name="LAN1" ports="1"/>
&lt;port name="LAN2" ports="2"/&gt;
<port name="LAN2" ports="2"/>
&lt;port name="LAN3" ports="3"/&gt;
<port name="LAN3" ports="3"/>
&lt;port name="LAN4" ports="4"/&gt;
<port name="LAN4" ports="4"/>
&lt;interface name="LAN1" port="LAN1"&gt;
<interface name="LAN1" port="LAN1">
&lt;subnet comment="dhcp client"/&gt;
<subnet comment="dhcp client"/>
&lt;subnet ip="2001:DB8::1/64 10.0.0.1/24" nat="true"
<subnet ip="2001:DB8::1/64 10.0.0.1/24" nat="true"
comment="Temporary IPs for setup only, delete when finished configuring"/&gt;
comment="Temporary IPs for setup only, delete when finished configuring"/>
&lt;dhcp ip="10.0.0.100-199"/&gt;
<dhcp ip="10.0.0.100-199"/>
&lt;/interface&gt;
</interface>
&lt;ppp port="LAN4" username="startup_user@startup_domain" password=""
<ppp port="LAN4" username="startup_user@startup_domain" password=""
comment="Example PPPoE config for DSL/FTTC/FTTP/etc"/&gt;
comment="Example PPPoE config for DSL/FTTC/FTTP/etc"/>
&lt;services&gt;
<services>
&lt;ntp/&gt;
<ntp/>
&lt;telnet comment="Set allow IP list to restrict access"/&gt;
<telnet comment="Set allow IP list to restrict access"/>
&lt;http/&gt;
<http/>
&lt;/services&gt;
</services>
&lt;rule-set target-interface="LAN1" drop="reject" comment="default
<rule-set target-interface="LAN1" drop="reject" comment="default
firewall rule - block incoming"&gt;
firewall rule - block incoming">
&lt;rule source-interface="self" comment="allow from the FireBrick
<rule source-interface="self" comment="allow from the FireBrick
though"/&gt;
though"/>
&lt;/rule-set&gt;
</rule-set>
&lt;/config&gt;
</config>
</syntaxhighligh>


</pre>
Which sets up the 4 Ethernet ports as separate LANs, and an IP of 10.0.0.1 (and 2001:DB8::1)&nbsp;with the FireBrick acting DHCP server on the first port. So, connecting a computer to Port 1 should get you a 10.0.0.x IP address, and you can access http://10.0.0.1
Which sets up the 4 Ethernet ports as separate LANs, and an IP of 10.0.0.1 (and 2001:DB8::1)&nbsp;with the FireBrick acting DHCP server on the first port. So, connecting a computer to Port 1 should get you a 10.0.0.x IP address, and you can access http://10.0.0.1


Port 4 is set as an example of a PPPoE client, we'll set this up a little later.
Port 4 is set as an example of a PPPoE client, we'll set this up a little later.


= Configuring Initial Basic Settings =
= Configuring Initial Basic Settings =