Skip to content

{ Category Archives } Freecom FSG-3

Notes about the Freecom FSG-3 wireless router

Adding DCHP static mapping support to the FSG-3

The Freecom FSG-3 firmware user interface does not have the ability to set static IP addresses for hosts via DHCP. Luckily, the underlying dnsmasq program does this (and lots more) easily, and even though dnsmasq is in /usr/local/sbin for some reason on the FSG-3, it still reads the default configuration file at /etc/dnsmasq.conf (which Freecom […]

Adding zoneedit.com dynamic DNS support to the FSG-3

ez-ipupdate already supports the zoneedit service, so all that is required is to add it to the dyndns_show.html web page and ddns init script. /var/www/admin/content_en/dyndns_show.html changes: <select name=”ddns_service” style=”width:200px”> <option value=zoneedit_com>zoneedit.com</option> <option value=dyndns_org>dyndns.org</option> <option value=dtdns_com>dtdns.com</option> <option value=noip_com>no-ip.com</option> </select> /etc/init.d/ddns changes: if [ “$DDNS” = “zoneedit_com” ]; then /bin/ez-ipupdate -i $EXIF -S zoneedit -u $USER:$PASSWD -h […]