mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-28 11:43:25 +02:00
DNS: Write name servers received from ISP to /var/run/dns{1,2}
Signed-off-by: Stefan Schantl <stefan.schantl@ipfire.org> Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
@@ -51,7 +51,7 @@ unless (-f $settings_file) { system("touch $settings_file") };
|
||||
unless (-f $servers_file) { system("touch $servers_file") };
|
||||
|
||||
# File which stores the ISP assigned DNS servers.
|
||||
my @ISP_nameserver_files = ( "${General::swroot}/dns/dns1", "${General::swroot}/dns/dns2" );
|
||||
my @ISP_nameserver_files = ( "/var/run/dns1", "/var/run/dns2" );
|
||||
|
||||
# File which contains the ca-certificates.
|
||||
my $ca_certs_file = "/etc/ssl/certs/ca-bundle.crt";
|
||||
|
||||
@@ -14,9 +14,7 @@
|
||||
. /etc/sysconfig/rc
|
||||
. $rc_functions
|
||||
|
||||
|
||||
eval $(/usr/local/bin/readhash /var/ipfire/ethernet/settings)
|
||||
eval $(/usr/local/bin/readhash /var/ipfire/dns/settings)
|
||||
|
||||
dhcpcd_up()
|
||||
{
|
||||
@@ -30,8 +28,7 @@ dhcpcd_up()
|
||||
|
||||
# Only if RED_TYPE=DHCP update /var/ipfire/red
|
||||
if [ "$RED_TYPE" == "DHCP" ]; then
|
||||
|
||||
#Check if we have to restart the services at update
|
||||
# Check if we have to restart the services at update
|
||||
[ ! -e "/var/ipfire/red/active" ] && update=1;
|
||||
if [ "$old_domain_name_service" != "$new_domain_name_service" ]; then
|
||||
update=1;
|
||||
@@ -43,15 +40,9 @@ dhcpcd_up()
|
||||
update=1;
|
||||
fi
|
||||
|
||||
#Get DNS from dhcp
|
||||
if [ -n "$DNS0" ] && [ -n "$DNS1" ]; then
|
||||
logger -p local0.info -t dhcpcd.exe[$$] "Overwritting DNS-Server addresses with ${DNS0},${DNS1}"
|
||||
echo -n ${DNS0} > /var/ipfire/red/dns1
|
||||
echo -n ${DNS1} > /var/ipfire/red/dns2
|
||||
else
|
||||
echo -n `/etc/rc.d/helper/getdnsfromdhcpc.pl 1` > /var/ipfire/red/dns1
|
||||
echo -n `/etc/rc.d/helper/getdnsfromdhcpc.pl 2` > /var/ipfire/red/dns2
|
||||
fi
|
||||
# Get DNS from dhcp
|
||||
/etc/rc.d/helper/getdnsfromdhcpc.pl 1 > /var/run/dns1
|
||||
/etc/rc.d/helper/getdnsfromdhcpc.pl 2 > /var/run/dns2
|
||||
|
||||
#Get IP Address
|
||||
echo -n "$new_ip_address" > /var/ipfire/red/local-ipaddress
|
||||
@@ -76,6 +67,9 @@ dhcpcd_down()
|
||||
set | grep "^new_" | sed "s|^new_||g" | \
|
||||
sort > /var/ipfire/dhcpc/dhcpcd-$interface.info
|
||||
|
||||
# Remove DNS servers
|
||||
rm -f /var/run/dns1 /var/run/dns2
|
||||
|
||||
# Only if RED_TYPE=DHCP update /var/ipfire/red
|
||||
if [ "$RED_TYPE" == "DHCP" ]; then
|
||||
rm -f /var/ipfire/red/active
|
||||
|
||||
@@ -120,8 +120,6 @@ case "${1}" in
|
||||
grep -v -E "\<gateway\>" /etc/hosts > /tmp/hosts
|
||||
echo "$GATEWAY gateway" >> /tmp/hosts
|
||||
mv /tmp/hosts /etc/hosts
|
||||
echo -n "${DNS1}" > /var/ipfire/red/dns1
|
||||
echo -n "${DNS2}" > /var/ipfire/red/dns2
|
||||
touch /var/ipfire/red/active
|
||||
|
||||
# Create route to default gateway
|
||||
|
||||
@@ -22,9 +22,8 @@
|
||||
. /etc/sysconfig/rc
|
||||
. $rc_functions
|
||||
|
||||
eval $(/usr/local/bin/readhash /var/ipfire/ppp/settings)
|
||||
|
||||
rm -f /var/ipfire/red/active
|
||||
rm -f /var/ipfire/red/active \
|
||||
/var/run/dns1 /var/run/dns2
|
||||
|
||||
run_subdir ${rc_base}/init.d/networking/red.down/
|
||||
|
||||
|
||||
@@ -22,32 +22,17 @@
|
||||
. /etc/sysconfig/rc
|
||||
. $rc_functions
|
||||
|
||||
PRIMARY_DNS=$DNS1
|
||||
SECONDARY_DNS=$DNS2
|
||||
|
||||
eval $(/usr/local/bin/readhash /var/ipfire/ppp/settings)
|
||||
|
||||
if [ "$DNS" == "Automatic" ]; then
|
||||
if [ "$TYPE" == "isdn" ]; then
|
||||
echo -n "$MS_DNS1" > /var/ipfire/red/dns1
|
||||
echo -n "$MS_DNS2" > /var/ipfire/red/dns2
|
||||
else
|
||||
if [ "$PRIMARY_DNS" == "10.11.12.13" ]; then
|
||||
echo -n "$DNS1" > /var/ipfire/red/dns1
|
||||
else
|
||||
echo -n "$PRIMARY_DNS" > /var/ipfire/red/dns1
|
||||
fi
|
||||
if [ "$SECONDARY_DNS" == "10.11.12.14" ]; then
|
||||
echo -n "$DNS2" > /var/ipfire/red/dns2
|
||||
else
|
||||
echo -n "$SECONDARY_DNS" > /var/ipfire/red/dns2
|
||||
fi
|
||||
fi
|
||||
else
|
||||
echo -n "$DNS1" > /var/ipfire/red/dns1
|
||||
echo -n "$DNS2" > /var/ipfire/red/dns2
|
||||
if [ "$TYPE" = "isdn" ]; then
|
||||
DNS1="${MS_DNS1}"
|
||||
DNS2="${MS_DNS2}"
|
||||
fi
|
||||
|
||||
# Write DNS servers to configuration
|
||||
echo "${DNS1}" > /var/run/dns1
|
||||
echo "${DNS2}" > /var/run/dns2
|
||||
|
||||
echo -n "$1" > /var/ipfire/red/iface
|
||||
echo -n "$4" > /var/ipfire/red/local-ipaddress
|
||||
echo -n "$5" > /var/ipfire/red/remote-ipaddress
|
||||
|
||||
@@ -27,6 +27,9 @@ main() {
|
||||
|
||||
if [ -s "/var/ipfire/ppp/settings" ]; then
|
||||
eval $(/usr/local/bin/readhash /var/ipfire/ppp/settings)
|
||||
|
||||
# Remove DNS, DNS1 and DNS2
|
||||
sed -i "/^DNS[12]?=/d" /var/ipfire/ppp/settings
|
||||
elif [ -s "/var/ipfire/dns/settings" ]; then
|
||||
eval $(/usr/local/bin/readhash /var/ipfire/dns/settings)
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user