mirror of
https://github.com/GNS3/gns3-registry.git
synced 2024-12-19 04:47:54 +00:00
0e3e2f8392
This container provide a basic DHCP server that you can drop in your topology and configure.
51 lines
1.6 KiB
Bash
51 lines
1.6 KiB
Bash
#!/bin/sh
|
|
#
|
|
# Copyright (C) 2016 GNS3 Technologies Inc.
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
mkdir -p /etc/dnsmasq
|
|
|
|
if [ ! -f /etc/dnsmasq/dnsmaq.conf ]
|
|
then
|
|
cat > /etc/dnsmasq/dnsmaq.conf <<EOF
|
|
# dnsmasq will open tcp/udp port 53 and udp port 67 to world to help with
|
|
# dynamic interfaces (assigning dynamic ips). Dnsmasq will discard world
|
|
# requests to them, but the paranoid might like to close them and let the
|
|
# kernel handle them:
|
|
bind-interfaces
|
|
|
|
# Dynamic range of IPs to make available to LAN pc
|
|
dhcp-range=192.168.0.50,192.168.0.240,12h
|
|
|
|
EOF
|
|
fi
|
|
|
|
echo '
|
|
_______ __ __ ______ _______
|
|
/ \ / | / | / \ / \
|
|
$$$$$$$ |$$ | $$ |/$$$$$$ |$$$$$$$ |
|
|
$$ | $$ |$$ |__$$ |$$ | $$/ $$ |__$$ |
|
|
$$ | $$ |$$ $$ |$$ | $$ $$/
|
|
$$ | $$ |$$$$$$$$ |$$ | __ $$$$$$$/
|
|
$$ |__$$ |$$ | $$ |$$ \__/ |$$ |
|
|
$$ $$/ $$ | $$ |$$ $$/ $$ |
|
|
$$$$$$$/ $$/ $$/ $$$$$$/ $$/
|
|
|
|
'
|
|
|
|
echo "Edit /etc/dnsmasq/dnsmaq.conf to change the configuration"
|
|
dnsmasq --log-dhcp --no-daemon --conf-file=/etc/dnsmasq/dnsmaq.conf
|