Difference between revisions of "Bering-uClibc 4.x - User Guide - IPv4 Networking"

From bering-uClibc
Jump to: navigation, search
(Added reference to Debian NetworkConfiguration wiki)
(Added link to new Traffic Management page)
 
(One intermediate revision by the same user not shown)
Line 27: Line 27:
 
* [[Bering-uClibc 4.x - User Guide - IPv4 Networking - Internal Network Connections|Internal Network Connections]]
 
* [[Bering-uClibc 4.x - User Guide - IPv4 Networking - Internal Network Connections|Internal Network Connections]]
 
* [[Bering-uClibc 4.x - User Guide - IPv4 Networking - Configure Shorewall|Configure Shorewall]]
 
* [[Bering-uClibc 4.x - User Guide - IPv4 Networking - Configure Shorewall|Configure Shorewall]]
 +
* [[Bering-uClibc 4.x - User Guide - IPv4 Networking - Configure Traffic Management|Configure Traffic Management]]
 
* [[Bering-uClibc 4.x - User Guide - IPv4 Networking - Configure Dnsmasq|Configure Dnsmasq]]
 
* [[Bering-uClibc 4.x - User Guide - IPv4 Networking - Configure Dnsmasq|Configure Dnsmasq]]
 
* [[Bering-uClibc 4.x - User Guide - IPv4 Networking - Configure 802.1Q VLANs|Configure 802.1Q VLANs]]
 
* [[Bering-uClibc 4.x - User Guide - IPv4 Networking - Configure 802.1Q VLANs|Configure 802.1Q VLANs]]
Line 35: Line 36:
 
* The <code class="filename">ipv6.ko</code> kernel Module is loaded automatically.
 
* The <code class="filename">ipv6.ko</code> kernel Module is loaded automatically.
 
** This means that every network interface will be given a "link local" IPv6 address (except for the loopback interface, <tt>lo</tt>, which is given a "host local" IPv6 address).
 
** This means that every network interface will be given a "link local" IPv6 address (except for the loopback interface, <tt>lo</tt>, which is given a "host local" IPv6 address).
 +
** In addition, if an IPv6 router is configured on an interface (such as <tt>eth0</tt>) then that will be used to assign a "global" IPv6 address to the interface.
 
* The <code class="filename">ip6tables.lrp</code> Package is installed, and Shorewall uses this to specify that IPv6 traffic should be DROPped.
 
* The <code class="filename">ip6tables.lrp</code> Package is installed, and Shorewall uses this to specify that IPv6 traffic should be DROPped.
 
** This is because <tt>DISABLE_IPv6=Yes</tt> is specified in <code class="filename">/etc/shorewall/shorewall.conf</code>
 
** This is because <tt>DISABLE_IPv6=Yes</tt> is specified in <code class="filename">/etc/shorewall/shorewall.conf</code>

Latest revision as of 15:26, 4 June 2011

IPv4 Networking
Prev Bering-uClibc 4.x - User Guide Next


IPv4 Networking Overview

A default installation of Bering-uClibc 4.x has IPv4 networking enabled and configured as follows:

  • External Ethernet interface eth0 with an IPv4 address obtained using DHCP.
  • Internal Ethernet interface eth1 with static IPv4 address 192.168.1.254.
  • Linux kernel iptables firewall code loaded.
  • Shorewall utility installed, for managing the iptables configuration.
  • Dnsmasq utility installed, providing DNS forwarding and a DHCP server.
  • Dropbear utility installed, providing an SSH server.
  • A small HTTP server installed, providing a web-based administration interface.

More information on configuring some of these features can be found in the Sub-Chapters.

Note that Bering-uClibc 4.x network configuration is almost identical to other Debian-based systems, so standard Debian documentation like http://wiki.debian.org/NetworkConfiguration might be useful.


IPv4 Networking Sub-Chapters


IPv6 Notes for IPv4 Users

By default, Bering-uClibc 4.x has some limited IPv6 features enabled. Specifically:

  • The ipv6.ko kernel Module is loaded automatically.
    • This means that every network interface will be given a "link local" IPv6 address (except for the loopback interface, lo, which is given a "host local" IPv6 address).
    • In addition, if an IPv6 router is configured on an interface (such as eth0) then that will be used to assign a "global" IPv6 address to the interface.
  • The ip6tables.lrp Package is installed, and Shorewall uses this to specify that IPv6 traffic should be DROPped.
    • This is because DISABLE_IPv6=Yes is specified in /etc/shorewall/shorewall.conf

In order to completely disable IPv6 it is necessary to prevent the ipv6.ko kernel Module from being loaded. If required, the recommended way of doing that is to add the following line to /etc/modules.conf:

blacklist ipv6

Further information on configuring IPv6 can be found in the Next Chapter.



Prev Up Next