Don't understand german? Read or subscribe to my english-only feed.

Set up a router with grml within 1 minute

Thanks to schula for writing down the necessary steps how to set up a router with grml in less than 1 minute. JFTR the steps in english (will become part of grml-tips as well):

  • Execute ‘grml-router’
  • Install dnsmasq if not already present: apt-get update ; apt-get install dnsmasq
  • Adjust /etc/dnsmasq.conf according to your needs:
  • domain-needed
    bogus-priv
    dhcp-range=192.168.0.124,192.168.0.254,1m # dhcp range
    dhcp-option=3,192.168.0.1   # dns server
    dhcp-option=1,255.255.255.0 # netmask
    
  • Run ‘Restart dnsmasq’

That’s it. :-)

Comments are closed.