Displaying 10 results from an estimated 10 matches for "peerntp".
Did you mean:
peerip
2011 Mar 02
4
networkinterface type proposal
...# i.e. the RH sysvinit provider would turn " " to \n and
# drop these into the network-scripts file.
# This particular option enables ''/dev/vlan201'' instead of ''/dev/eth0.201''
extra_opts => "VLAN_NAME_TYPE=VLAN_PLUS_VID_NO_PAD PEERDNS=NO PEERNTP=NO"
}
### bonding example - master interface with two slaves
networkinterface { "bond0":
ensure => "enabled",
ipaddress => "10.0.0.4",
netmask => "255.255.255.0",
gateway => "10.0.0.1",
# rather than suppo...
2009 Jun 25
1
[PATCH node] Rerunning network config resets all network config. bz#507393
...- local BR_ROOT="$CONFIG_FILE_ROOT-$BRIDGE"
+ local BR_ROOT="$IFCONFIG_FILE_ROOT-$BRIDGE"
local BR_CONFIG="rm $BR_ROOT\nset $BR_ROOT/DEVICE $BRIDGE"
BR_CONFIG="$BR_CONFIG\nset $BR_ROOT/TYPE Bridge"
BR_CONFIG="$BR_CONFIG\nset $BR_ROOT/PEERNTP yes"
@@ -202,7 +204,7 @@ function configure_dns
fi
local IF_FILENAME="$WORKDIR/augtool-br${CONFIGURED_NIC}"
- local IF_ROOT="$CONFIG_FILE_ROOT-br${CONFIGURED_NIC}"
+ local IF_ROOT="$IFCONFIG_FILE_ROOT-br${CONFIGURED_NIC}"
local IF_CONFIG=...
2011 Jul 18
0
[PATCH] fix ipv6 switch to disabled
...ons(+), 2 deletions(-)
diff --git a/scripts/network.py b/scripts/network.py
index fd78877..8159283 100644
--- a/scripts/network.py
+++ b/scripts/network.py
@@ -78,7 +78,6 @@ class Network:
self.BR_CONFIG += "set %s/TYPE Bridge\n" % BR_ROOT
self.BR_CONFIG += "set %s/PEERNTP yes\n" % BR_ROOT
self.BR_CONFIG += "set %s/DELAY 0\n" % BR_ROOT
-
if OVIRT_VARS.has_key("OVIRT_IPV6"):
if OVIRT_VARS["OVIRT_IPV6"] == "auto":
self.BR_CONFIG += "set %s/IPV6INIT yes\n" % BR_ROOT
@...
2009 Jul 07
1
Obsoletes previous patch
This patch obsoletes the previously submitted patch. It adds a
warning message to the user when they select to change the NTP settings.
2009 Oct 09
0
ovirt install : several issues
...#39;t be a problem since the hardware node should not be reachable by the guest network ? I plan to configure the IP of my guests statically.
Second :
ntpdate: Synchronizing with time server: [FAILED]
Starting ntpd: [ OK ]
So the time does not synchronize with the management node. But I did put PEERNTP=yes in ifcfg-eth1 in my management node.
Third :
WARNING: Deprecated config file /etc/modprobe.conf, all config files belong into /etc/modprobe.d/.
WARNING: Could not open '/lib/modules/2.6.30.5-43.fc11.x86_64/kernel/fs/exportfs/exportfs.ko': No such file or directory
WARNING: Deprecated c...
2010 Feb 10
1
RFC: First pass at making the node generic...
I'm looking for feedback on this first patch. The node has been pushed
towards a more generic boot process. With this patch the node can now
boot up and execute a few specifically-named scripts that reside in
/etc/node.d/ at key points during the startup.
After this goes upstream, the next step will be to define in more detail
the remote interfaces for the "managed" runtime
2010 Oct 25
0
[PATCH node] add network.py script
..., self.CONFIGURED_NIC)
+ BR_ROOT = "%s-%s" % (self.IFCONFIG_FILE_ROOT, BRIDGE)
+ self.BR_CONFIG += "rm %s\nset %s/DEVICE %s\n" % (BR_ROOT, BR_ROOT, BRIDGE)
+ self.BR_CONFIG += "set %s/TYPE Bridge\n" % BR_ROOT
+ self.BR_CONFIG += "set %s/PEERNTP yes\n" % BR_ROOT
+
+ if OVIRT_VARS.has_key("OVIRT_IPV6"):
+ if OVIRT_VARS["OVIRT_IPV6"] == auto:
+ self.BR_CONFIG += "set %s/IPV6INIT yes\n" % BR_ROOT
+ self.BR_CONFIG += "set %s/IPV6FORWARDING no\n" % BR_...
2011 Aug 11
1
[PATCH] fix augtool calls
parse input augtool strings to oper,key,value
---
scripts/network.py | 32 ++++++++++++++++----------------
1 files changed, 16 insertions(+), 16 deletions(-)
diff --git a/scripts/network.py b/scripts/network.py
index f51ee7c..65b551c 100644
--- a/scripts/network.py
+++ b/scripts/network.py
@@ -165,11 +165,11 @@ class Network:
ntpconf = ntpconf.split("\n")
for line
2008 Feb 28
1
Networking problems with fresh install
...fcfg-eth0
# Broadcom Corporation NetXtreme BCM5704 Gigabit Ethernet
DEVICE=eth0
BOOTPROTO=none
BROADCAST=172.17.2.255
HWADDR=00:e0:81:2c:73:86
ONBOOT=yes
DHCP_HOSTNAME=cm
TYPE=Ethernet
IPADDR=172.17.2.50
NETMASK=255.255.255.0
NETWORK=172.17.2.0
GATEWAY=172.17.2.1
USERCTL=yes
IPV6INIT=no
PEERDNS=no
PEERNTP=no
/etc/sysconfig/network-scripts/ifcfg-lo
[root at cm network-scripts]# more ifcfg-lo
DEVICE=lo
IPADDR=127.0.0.1
NETMASK=255.0.0.0
NETWORK=127.0.0.0
# If you're having problems with gated making 127.0.0.0/8 a martian,
# you can change this to something else (255.255.255.255, for example)
#BRO...
2009 Sep 09
1
oVirt Appliance / Single Machine Install
The following two patches fixes / reimplements the oVirt appliance
project, installing the entire oVirt stack including all server
and node components on one machine.
These patches are intended to be checked out and used to build
the appliance rpm, after which it is installed provides the
/usr/sbin/ovirt-appliance-ctrl script to install/uninstall the
appliance.
The first patch merely removes