From 120fb6a5d5db6706495cff6d62f4dba7879109e2 Mon Sep 17 00:00:00 2001 From: Stephen Soltesz <soltesz@cs.princeton.edu> Date: Wed, 28 Nov 2007 23:02:59 +0000 Subject: [PATCH] Added two new variables for a quick fix for the config file. PLC_API_IPOD_MASK PLC_API_IPOD_SUBNET These specify the subnet of machines that can send ipod packets. The mask is the mask applied to packets at the host to verify that it matches the subnet. So for instance, for PLC these are: PLC_API_IPOD_MASK=255.255.255.128 PLC_API_IPOD_SUBNET=128.112.139.0 --- default_config.xml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/default_config.xml b/default_config.xml index 259a827..b47d017 100644 --- a/default_config.xml +++ b/default_config.xml @@ -284,6 +284,19 @@ $Id$ resolvable by the configured DNS servers.</description> </variable> + <variable id="ipod_subnet" type="ip"> + <name>IP SUBNET for all API Servers</name> + <value>127.0.0.1</value> + <description>The IP Subnet for all API servers. Used by IPoD.</description> + </variable> + + <variable id="ipod_mask" type="ip"> + <name>IP Address</name> + <value>255.255.255.255</value> + <description>The IP Mask that should be applied to incoming + packets to match the IP Subnet for IPoD packets.</description> + </variable> + <variable id="port" type="int"> <name>Port</name> <value>443</value> -- 2.47.0