Networking Etudes : # : Network Etudes
December 26. 2014
if ($background) { ?>Click to zoom in
} ?>Networking Etudes : #2 : Hardware Specs
We use it headless (without monitor), but it still has VGA and HDMI ports just in case. Note: Ubuntu might have problems with graphics and show a black screen right after the installation, so you should do the network configuration during the installation, so you'd have access to it through ssh later. Then you can blacklist gma500-gfx and even set up a text mode.
Morex 557 Mini-ITX Enclosure can be mounted on the wall, but in that case HDD would be on its side. The enclosure gets slightly warmer in there (comparing to an open frame): + additional 17C on average. Still pretty decent.
No fans means no noise.
December 26. 2014
if ($background) { ?>Click to zoom in
} ?>Networking Etudes : #3 : Base Software Specs
In year 2005 I had to build my own Debian distro to boot Soekris from compact flash. Progress is good. Life is much simpler now, in year 2014.
#net.ipv4.ip_forward=1
iface br0 inet static address 192.168.1.1 network 192.168.1.0 netmask 255.255.255.0 broadcast 192.168.1.255 gateway 192.168.1.254 bridge-ports p2p1 etc, ports separated by spaces.
apt-get install dhcp3-server
ddns-update-style none;
option domain-name "gateway.2wire.net"; option domain-name-servers 192.168.1.254;
default-lease-time 600; max-lease-time 7200;
authoritative;
subnet ip type netmask (netmask){ range ##range of ip #'s; option routers ##default router(s) }Example: The net mask allows up to 30 ip's from that subnet . The range defines what range of values to use. The routers option defines the default gateways.
subnet 192.168.1.0 netmask 255.255.255.224 { range 192.168.1.10 192.168.1.20; option routers 192.168.1.254; }
/etc/init.d/dhcp-server start
December 26. 2014
if ($background) { ?>