Archive for the ‘Internet’ Category

Port-Forwarding in OpenWRT

July 16, 2008

Port forwarding can be enabled in OpenWRT by editing the firewall config file /etc/firewall.config.

forward:dport=5022:192.168.1.106:22

This is a typical entry in the firewall config implying that incoming connections from the WAN on port 5022 will be forwarded to port 22 on the machine 192.168.1.106.

Note:

The above method works on Kamikaze. For White Russian, check out the comment below.

Static IP Leases in OpenWRT

July 16, 2008

DHCP is the simplest way for handling IP leases in a home network. But, we would need static leases when we are running any servers in the network.

This can be done in OpenWRT by specifying the machine needing the static lease in the /etc/ethers file.
# desktop
xx:xx:xx:xx:xx:xx 192.168.1.106

Once this is done, the DNS/DHCP server needs to be restarted.
/etc/init.d/dnsmasq restart