Index: /tools/wleiden.pl
===================================================================
--- /tools/wleiden.pl	(revision 4202)
+++ /tools/wleiden.pl	(revision 4203)
@@ -201,10 +201,12 @@
   foreach my $interface (sort keys %config) {
     (my $if, my $number) = split(/:/, $interface);
-      if( defined $number ) {
-        $output .= "ifconfig_$if\_alias$number=\"inet $IP{$interface}\"\n";
-      }
-      else {
-        $output .= "ifconfig_$if=\"inet $IP{$interface}\"\n";
-      };
+    if( defined $number ) {
+      $output .= "ifconfig_$if\_alias$number=\"inet $IP{$interface}\"";
+    }
+    else {
+      $output .= "ifconfig_$if=\"inet $IP{$interface}\"\t";
+    };
+    ## add some extra link information
+    $output .= "\t# $DESC{$interface}\n";
   };
   return($output);
