disable monitor
[nodeconfig.git] / PlanetLabConf / ntp.conf.php
index 616d8a7..b687fde 100755 (executable)
@@ -5,8 +5,6 @@
 // Marc Fiuczynski <mef@cs.princeton.edu>
 // Copyright (C) 2006 The Trustees of Princeton University
 // 
-// $Id$
-//
 
 // Get admin API handle
 require_once 'plc_api.php';
@@ -18,14 +16,9 @@ $default_name = "default";
 $file_name = $config_directory . $file_prefix . $default_name;
 
 // Look up the node
-
-$interfaces = $adm->GetInterfaces(array('ip' => $_SERVER['REMOTE_ADDR']));
-
-if (!empty($interfaces)) {
-  $nodes = $adm->GetNodes(array($interfaces[0]['node_id']));
-  if (!empty($nodes)) {
-    $node = $nodes[0];
-  }
+$nodes = $adm->GetNodes(array('node_id' => (int)$_GET['node_id']));
+if (!empty($nodes)) {
+  $node = $nodes[0];
 }
 
 if (!isset($node)) {
@@ -33,6 +26,7 @@ if (!isset($node)) {
   exit();
 }
 
+
 $problem_models = array("Dell Precision 340", "Unknown");
 
 $hostname= trim($node['hostname']);
@@ -55,6 +49,14 @@ if (!empty($sites)) {
 print( "# node $hostname site $site_name $mylat $mylong $model\n");
 print( "driftfile /var/lib/ntp/ntp.drift\n" );
 print( "statsdir /var/log/ntpstats/\n" );
+print( "disable monitor\n" );
+print( "# Permit time synchronization with our time source, but do not\n");
+print( "# permit the source to query or modify the service on this system.\n");
+print( "restrict default kod nomodify notrap nopeer noquery\n");
+print( "restrict -6 default kod nomodify notrap nopeer noquery\n");
+print( "restrict 127.0.0.1\n");
+print( "restrict -6 ::1\n");
+
 if (is_numeric(array_search($model, $problem_models))) {
   print( "tinker stepout 0\n" );
 }