From 1be510f9529cb082f802408b472a77d074b394c0 Mon Sep 17 00:00:00 2001 From: Nicolas Vigier Date: Sun, 14 Apr 2013 13:46:12 +0000 Subject: Add zarb MLs html archives --- zarb-ml/mageia-dev/2012-June/016361.html | 158 +++++++++++++++++++++++++++++++ 1 file changed, 158 insertions(+) create mode 100644 zarb-ml/mageia-dev/2012-June/016361.html (limited to 'zarb-ml/mageia-dev/2012-June/016361.html') diff --git a/zarb-ml/mageia-dev/2012-June/016361.html b/zarb-ml/mageia-dev/2012-June/016361.html new file mode 100644 index 000000000..5980d584d --- /dev/null +++ b/zarb-ml/mageia-dev/2012-June/016361.html @@ -0,0 +1,158 @@ + + + + [Mageia-dev] net_applet and IPv6 + + + + + + + + + +

[Mageia-dev] net_applet and IPv6

+ zezinho + lists.jjorge at free.fr +
+ Mon Jun 11 11:41:02 CEST 2012 +

+
+ +
hi, toying with a pure IPv6 connection, I could not resolve DNS without 
+installing "rdnssd". Maybe this one could be in the basesystem for MGA3?
+
+I tried to also display IPv6 scope global address in net_applet's tray icon.
+It needs an "urpmi perl-Regexp-IPv6", so would bring a new requires in 
+drakx-net.
+Feel free to comment as I do NOT know Perl!
+
+
+- So I added to lib/network/tools.pm :
+
+use Regexp::IPv6 qw($IPv6_re);
+
+sub get_interface_ip6_address {
+     my ($net, $interface) = @_;
+     `/sbin/ip addr show dev $interface` =~ 
+/^\s*inet6\s+($IPv6_re+).*global\s+dynamic\s*$/m && $1 ||
+     'no global address';
+}
+
+- and to /usr/bin/net_applet :
+
+           "\n\n" . N("IPv6 address: %s", 
+network::tools::get_interface_ip6_address($net, $interface)) .
+
+
+just below :
+
+           "\n\n" . N("IP address: %s", 
+network::tools::get_interface_ip_address($net, $interface)) .
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+ +
+More information about the Mageia-dev +mailing list
+ -- cgit v1.2.1