f0462d4786e81f80843bb5ecae6478b783a73c0f
[nodeconfig.git] / PlanetLabConf / ipod.conf.php
1 <?php
2 //
3 // /etc/ipod.conf for production nodes
4 //
5 // Mark Huang <mlhuang@cs.princeton.edu>
6 // Copyright (C) 2004-2006 The Trustees of Princeton University
7 //
8 // $Id$
9 //
10
11 include('plc_config.php');
12
13 // Allow only the API server to send a reboot packet
14 $IP_SUBNET = PLC_API_IPOD_SUBNET;
15 $IP_MASK   = PLC_API_IPOD_MASK;
16
17 echo <<<EOF
18 # IP range that we respond to reboot requests from
19 IP_SUBNET=$IP_SUBNET
20 IP_MASK=$IP_MASK
21
22 EOF;
23
24 ?>