diff options
-rw-r--r-- | perl-install/network/network.pm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/perl-install/network/network.pm b/perl-install/network/network.pm index b3ae04b33..912c4dcc8 100644 --- a/perl-install/network/network.pm +++ b/perl-install/network/network.pm @@ -371,6 +371,17 @@ You may also enter the IP address of the gateway if you have one"), { label => _("Gateway device"), val => \$netc->{GATEWAYDEV}, list => \@devices }, ), ], + complete => sub { + unless (is_ip($netc->{dnsServer})) { + $in->ask_warn('', _("DNS server address should be in format 1.2.3.4")); + return 1; + } + unless (is_ip($netc->{GATEWAY})) { + $in->ask_warn('', _("Gateway address should be in format 1.2.3.4")); + return 1; + } + 0; + } ); } |