Utoljára aktív 8 months ago

Revízió 804fbb24c4462ef42a25a909fb743137c99eaffd

dnsmasq one-liners Eredeti
1# quick and dirty dns + dhcp
2sudo dnsmasq --no-daemon --port 53 --dhcp-range=192.168.255.100,192.168.255.200 --dhcp-leasefile=/dev/null \
3 --bind-interfaces --interface eth0 --listen-address=192.168.200.1
4
5# quick and dirty tftp
6sudo dnsmasq --no-daemon --port=0 --enable-tftp --tftp-root=/path/to/wherever \
7 --bind-interfaces --interface eth0 --listen-address=192.168.200.1
8