Index: nodes/node-script.pl
===================================================================
--- nodes/node-script.pl	(revision 7092)
+++ nodes/node-script.pl	(revision 7092)
@@ -0,0 +1,31 @@
+#!/usr/bin/env perl
+
+sub prompt {
+  ($question, $default) = @_;
+  if ( "$default" ne "" ) {
+    $question = "$question [$default]";
+  }
+  print "$question: ";
+
+  $response = <STDIN>;
+
+  # Kill blank space
+  $response =~ s/^\s+//;
+  $response =~ s/\s+$//;
+
+  # Check if default needs to be set
+  if ( "$response" eq  "" ) {
+    $response = $default;
+  }
+  return $response;
+}
+
+$NODE = prompt "Which node do you like to edit","CNodeRabo";
+#$NODE = 'CNodeRabo';
+
+require "./$NODE/wleiden.conf";
+
+$LOCATION = prompt "Location",$location;
+
+
+
Index: nodes/wleiden.conf.tmpl
===================================================================
--- nodes/wleiden.conf.tmpl	(revision 7092)
+++ nodes/wleiden.conf.tmpl	(revision 7092)
@@ -0,0 +1,37 @@
+# Configuration file of %%NODENAME%%
+# Alter with care, make sure to _always_ verify syntax before commit
+
+$LOCATION="%%LOCATION%%";
+$MASTERIP="%%MASTERIP%%";
+$NODENAME="%%NODENAME%%";
+
+$STATUS="%%STATUS%%";
+
+# Edugis coordinates
+$X="%%EDUGIS_X%%";
+$Y="%%EDUGIS_Y%%";
+
+$antenna{'%%ANTENNA%%'}="
+POLAR=%%POLAR%%
+TYPE=%%ANTENNA%%
+GAIN=%%GAIN%%
+BEAMWIDTH=%%BEAMWIDTH%%
+CABLE=%%CABLE%%
+HEIGTH=%%HEIGTH%%
+"
+
+$config{'%%INTERFACE%%'}="
+TYPE=%%TYPE%%
+IP=%%IP%%
+DHCP=%%DHCP%%
+
+DESC=%%DESC%%
+SDESC=%%SDESC%%
+%%INTERFACE%%%
+
+MODE=%%MODE%%
+ESSID=%%ESSID%%
+CHANNEL=%%CHANNEL%%
+
+ANTENNA=%%ANTENNA%%
+"
