Book
- Basic setup of a SOHO server
- SoHo - Software repositories
- SoHo - Alias of loopback interface
- SoHo - IPtables configuration example
- SoHo - Webmin
- SoHo - DNS
- SoHo - VMWare
- SoHo - Windows
- SoHo - OpenVPN
- SoHo - Remote Desktop
- Nameserver on Windows XP forwarding to public DNS with private zones
- SoHO - NTP
- SoHo - SSH
- SoHo - Ubuntu prerequisites
- How to strengthen SSH
- Fixing Nessus complaints
- Java installation on RHEL 4
- Installing vsFTPd on CentOS
- How to setup CA (certificate authority)
- Installation of VIM X11 and archivers on RHEL 4 x86_64
- SoHo - MS & Open-Office
- User management
- CommuniGate Pro
- Backup
- Issue tracking for small groups
- Jabber setup and configuration
- Monitoring & Statistics
- Printing in SOHO
- Faxes in SOHO
- T38 Modem
- PostScript fonts for faxes
- Installing Brother MFU drivers on Ubuntu
- Installing Hylafax client on RHEL4 and Fedora
- Installing Hylafax server on RHEL4
- Installing Hylafax server on Ubuntu
- Integrating Hylafax with CUPS
- Integrating Hylafax with CommuniGate
- Managing Hylafax from Ubuntu client
- Sending and receiving faxes over internet (links)
- How to test faxing
- Drivers for Brother MFUs
- Brand new idea about faxing
- External faxing resources
- Antivirus & Antispam
- External SOHO References
- Supplementary SOHO procedures
SoHo - Alias of loopback interface
We will need a non-127.0.0.1 alias address on the loopback interface for port forwarding. Here is shell script for this task /etc/rc.d/init.d/lo1network
- #! /bin/bash
- #
- # lo1network Bring up interface lo:1
- #
- # chkconfig: 2345 11 89
- # description: Activates special loopback interface for nat
- #
- ### BEGIN INIT INFO
- # Provides: $lo1network
- ### END INIT INFO
- . /etc/init.d/functions
- LO1IFACE="lo:1"
- LO1ADDRESS="172.16.111.1"
- LO1NETMASK="255.255.255.0"
- test -r /etc/sysconfig/lo1network && . /etc/sysconfig/lo1network
- /sbin/ifconfig $LO1IFACE $LO1ADDRESS netmask $LO1NETMASK
- exit 0
Make it run on system boot
chkconfig lo1network on service lo1network start

Comments
Post new comment