Displaying 20 results from an estimated 393 matches for "onboot".
2013 Mar 18
1
CentOS 6.4 kickstart bonding
...ed during installation. I've a 6 nic server (two for "puclic" network, two for cluster network, two for iscsi network)
here is my "network" kickstart section:
# "Public" network, bond0 created, it works fine,
network --device=bond0 --noipv6 --bootproto=static --onboot=yes --hostname=box.example.com --ip=192.168.1.3 --netmask=255.255.255.0 --gateway=192.168.1.1 --nameserver=192.168.1.1 --bondslaves=p1p1,p1p2 --bondopts=mode=active-backup,primary=p1p1,miimon=80,updelay=60000
# Cluster network, not created on install
network --device=bond1 --noipv6 --nodns --node...
2009 May 18
0
[PATCH server] fixed functional tests after recent controller refactoring and managed node controller fixes.
...configuration_test.rb
+++ b/src/test/functional/managed_node_configuration_test.rb
@@ -48,7 +48,7 @@ class ManagedNodeConfigurationTest < Test::Unit::TestCase
expected = <<-HERE
# THIS FILE IS GENERATED!
-ifcfg=#{nic.mac}|breth0|BOOTPROTO=#{nic.boot_protocol}|TYPE=bridge|PEERDNS=no|ONBOOT=yes
+ifcfg=#{nic.mac}|breth0|BOOTPROTO=#{nic.boot_protocol}|TYPE=Bridge|PEERDNS=no|ONBOOT=yes
ifcfg=#{nic.mac}|eth0|BRIDGE=breth0|ONBOOT=yes
HERE
@@ -67,7 +67,7 @@ ifcfg=#{nic.mac}|eth0|BRIDGE=breth0|ONBOOT=yes
expected = <<-HERE
# THIS FILE IS GENERATED!
-ifcfg=#{nic.mac}|bre...
2015 Nov 12
10
Poor perfmance of bridged interfaces
...own
address as source address
nov 12 15:30:22 localhost kernel: br0: received packet on enp0s3 with own
address as source address
And the operating systems is extremely slow
Interfaces files :
[root at localhost ~]# cat /etc/sysconfig/network-scripts/ifcfg-*
DEVICE=br0
TYPE=Bridge
BOOTPROTO=dhcp
ONBOOT=yes
#STP=on
#DELAY=0
NM_CONTROLLED=no
DEVICE=enp0s3
#HWADDR=08:00:27:AB:1D:E6
BOOTPROTO=none
ONBOOT=yes
NM_CONTROLLED=no
BRIDGE=br0
DEVICE=enp0s8
HWADDR=08:00:27:A3:98:E6
BOOTPROTO=none
ONBOOT=yes
NM_CONTROLLED=no
BRIDGE=br0
DEVICE=lo
TYPE=loopback
IPADDR=127.0.0.1
NETMASK=255.0.0.0
NETWORK=127.0....
2015 Jun 25
1
Possible bug in kickstart
....
Is this expected behaviour? I really don't want to have to manually manipulate the ifcfg-bond* interfaces and create the ifcfg-BRIDGE* interfaces manually so I'd like this to work.
# Configure a bond over the slaves in failover mode
network --device=bond0 --noipv6 --bootproto=dhcp --onboot=yes --bondslaves=em1,em2 --bondopts=mode=active-backup;primary=em1 --activate
# Configure VLANs
network --device=bond0 --vlanid=11 --noipv6 --onboot=yes --bootproto=dhcp --activate
network --device=bond0 --vlanid=100 --noipv6 --onboot=yes --bootproto=dhcp --activate
network --device=bond0 --vlanid...
2016 Oct 04
1
Virtualization Networking
...h0"
> BOOTPROTO=none
> GATEWAY=192.168.1.1
> NM_CONTROLLED=no
> HWADDR=44:37:E6:53:1E:E2
> MACADDR=""
> IPV6INIT=no
> DEVICE=eth0
> NETMASK=255.255.255.0
> MTU=""
> BROADCAST=192.168.1.255
> IPADDR=192.168.1.110
> NETWORK=192.168.1.0
> ONBOOT=yes
> TYPE=Ethernet
>
> /etc/sysconfig/ifcfg-eth1
>
> GATEWAY=192.168.1.1
> NAME=""
> BOOTPROTO=none
> NM_CONTROLLED=no
> MACADDR=""
> IPV6INIT=no
> DEVICE=eth1
> NETMASK=255.255.255.0
> MTU=""
> BROADCAST=255.255.255.255
>...
2007 Aug 23
3
Using Puppet to swap eth0 and eth1
...-v3.pdf . Luckily, this is fixable using Red Hat''s
HWADDR sysconfig hack, and I implement this HWADDR fix with Puppet.
Puppet writes /etc/sysconfig/network/ifcfg-eth0 and /etc/sysconfig/
network/ifcfg-eth1 using a Puppet definition called network-interface:
define network-interface (
$onboot = ''no'', $bootproto = ''static'', $ipaddr = '''', $hwaddr,
$netmask = '''') {
file { "ifcfg-$name":
path => "/etc/sysconfig/network-scripts/ifcfg-$name",
owner => "root",
group => &quo...
2012 May 13
4
True bond howto for Centos 6
...ck in will then not allow pining if the default d=gateway.
When cold booting it somewhat works, some hosts are pingable while others are not.
When restarting the network service via /etc/init.d/network, nothing is pingable.
Here are my configs;
ifcfg-bond0
DEVICE=bond0
USERCTL=no
BOOTPROTO=none
ONBOOT=yes
IPADDR=10.0.0.10
NETMASK=255.255.0.0
NETWORK=10.0.0.0
TYPE=Unknown
IPV6INIT=no
ifcfg-eth0
DEVICE=eth0
BOOTPROTO=none
ONBOOT=yes
MASTER=bond0
SLAVE=yes
USERCTL=no
ifcfg-eth1
DEVICE=eth1
BOOTPROTO=none
ONBOOT=yes
MASTER=bond0
SLAVE=yes
USERCTL=no
/etc/modprob.d/bonding.conf
alias bond0 bonding...
2013 Oct 08
2
C6: kickstart problems with additional repo
...rs.
If I add the repo line, anaconda asks then for the used network card and
indeed, switching to console the interfaces are still unconfigured.
Chosing eth0 in gui continues the installation!
This is the relevant part of ks.cfg
install
cdrom
lang de_DE.UTF-8
keyboard de-latin1
skipx
network --onboot yes --device eth0 --bootproto static
--ip=192.168.200.28 --netmask=255.255.255.0 --gateway=192.168.200.1
--nameserver=192.168.200.9
--noipv6
network --onboot no --device eth1 --bootproto static --noipv6
network --onboot no --device eth2 --bootproto static --noipv6
repo --name=vmware51
--baseurl...
2008 Jul 17
6
Simple IP Question
I have a server located remotely running CentOS 5.x. I need to have
two IP's on the same interface. So I have this:
/etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE=eth0
BOOTPROTO=none
BROADCAST=69.x.x.199
HWADDR=00:x:x:x:c6:10
IPADDR=69.x.x.194
NETMASK=255.255.255.248
NETWORK=69.x.x.192
ONBOOT=yes
GATEWAY=69.x.x.193
TYPE=Ethernet
So I added this:
/etc/sysconfig/network-scripts/ifcfg-eth0:0
DEVICE=eth0
BOOTPROTO=none
BROADCAST=69.x.x.199
HWADDR=00:x:x:x:c6:10
IPADDR=69.x.x.195
NETMASK=255.255.255.248
NETWORK=69.x.x.192
ONBOOT=yes
GATEWAY=69.x.x.193
TYPE=Ethernet
Now the only IP that wo...
2008 Oct 24
1
bonding over bridge or bridge over bonding ?
Hi,
I'm trying to configure a network bridge over a bonding without any
success. Here is my configuration:
ifcfg-eth0:
DEVICE=eth0
HWADDR=00:1E:C9:E8:3F:E5
ONBOOT=yes
USERCTL=no
MASTER=bond0
SLAVE=yes
ifcfg-eth1:
DEVICE=eth1
HWADDR=00:1E:C9:E8:3F:E7
ONBOOT=yes
USERCTL=no
MASTER=bond0
SLAVE=yes
ifcfg-bond0:
DEVICE=bond0
ONBOOT=yes
BRIDGE=br0
USERCTL=no
ifcfg-bridge0:
DEVICE=br0
TYPE=Bridge
BOOTPROTO=static
IPADDR=192.168.52.55
NETMASK=255.255.255.0
NETW...
2016 Aug 08
0
Help with Network configuration files
...g working but the host interface, What device do I put into ifcfg-VLAN-OOB to create a new software only interface.
Here is what I have so far.
EM1-4 are configured as slaves to BOND0
ifcfg-em1:
TYPE=Ethernet
USERSTL=no
MASTER=bond0
NAME=em1
UUID=0ca45a64-70eb-4bfb-bf73-90b221d5fa65
DEVICE=em1
ONBOOT=yes
SLAVE=yes
ifcfg-em2:
TYPE=Ethernet
NAME=em2
UUID=d79cc76a-8f38-460c-9430-2ae78b43dc1d
DEVICE=em2
ONBOOT=yes
MASTER=bond0
USERCTL=no
SLAVE=yes
ifcfg-em3:
TYPE=Ethernet
NAME=em3
UUID=9f7cf127-eba2-45e8-95bd-814e6066aa74
DEVICE=em3
ONBOOT=yes
MASTER=bond0
USERCTL=no
SLAVE=yes
ifcfg-em4
TYPE=E...
2016 Mar 29
2
Network bond - one port goes down from time to time
...PE=Bond #Interface type set to bond
BOOTPROTO=static
BONDING_MASTER=yes
BONDING_OPTS="mode=4" #i set mode to active-backup
DEFROUTE=yes
IPADDR="192.168.xxx.xxx"
NETMASK=255.255.255.0
GATEWAY="192.168.xxx.xxx"
IPV4_FAILURE_FATAL=no
IPV6INIT=no
NAME=bond0
DEVICE=bond0
ONBOOT=yes
TYPE="Ethernet"
MASTER=bond0
SLAVE=yes
NAME="enp4s0f0"
UUID="xxx"
DEVICE="enp4s0f0"
ONBOOT="yes"
TYPE="Ethernet"
MASTER=bond0
SLAVE=yes
NAME="enp4s0f0"
UUID="xxx"
DEVICE="enp4s0f1"
ONBOOT="yes"...
2016 Aug 17
0
Anaconda error on centos 7.2
...='us'
network --device eth0 --bootproto static --ip 10.97.60.50 --netmask
255.255.255.0 --gateway 10.97.60.254 --nameserver 10.97.2.1 --noipv6
# System language
lang en_US.UTF-8
# System timezone
timezone America/Los_Angeles
# Network information
#network --bootproto=dhcp --device=eno1 --onboot=yes --ipv6=auto
#network --bootproto=dhcp --device=eno2 --onboot=yes --ipv6=auto
#network --bootproto=dhcp --device=enp4s0f0 --onboot=yes --ipv6=auto
#network --bootproto=dhcp --device=enp4s0f1 --onboot=yes --ipv6=auto
#network --bootproto=dhcp --device=enp4s0f2 --onboot=yes --ipv6=auto
#networ...
2012 Jan 27
2
After a long break, one more try at bond/bridge nics
...I have never done this and have no mentor other
than this exceptional mailing list.
============================
/etc/modprobe.conf
alias bond0 bonding
options bond0 mode=balance-alb miimon=100
============================
============================
bond0
DEVICE=bond0
BOOTPROTO=none
BRIDGE=br0
ONBOOT=yes
BONDING_OPTS="mode=1 miimon=100 primary=eth0"
============================
============================
br0
DEVICE=br0
TYPE=Bridge
BOOTPROTO=none
IPADDR=<my virtual host IP address?>
NETWORK=xxx.xx.xx.xxx
BROADCAST=xxx.xx.xx.xx
NETMASK=255.255.255.0
ONBOOT=yes
GATEWAY=xx.xxx.xx...
2011 Jun 13
4
A bridge problem
...packets using tcpdump. From outside, though, you
can't see the servers. Trying to ping them, they see nothing. It seems to
be the case that tcp and icmp packets are blocked, and we can't figure out
why.
CentOS 5.6.
ifcfg-eth0
DEVICE=eth0
BRIDGE=br3
BOOTPROTO=dhcp
HWADDR=aa:bb:cc:dd:ee:ff
ONBOOT=yes
ifcfg-eth1
DEVICE=eth1
BRIDGE=br3
HWADDR=aa:bb:cc:dd:ee:gg
ONBOOT=yes
ifcfg-br3
DEVICE=br3
ONBOOT=yes
TYPE=Bridge
BOOTPROTO=static
IPADDR=<our ip>
NETMASK=255.255.254.0
NETWORK=<our nw>
GATEWAY=<our gw>
Any ideas?
mark
2013 Oct 28
1
bridged networking using VLAN : guest with 2 NIC
...o
MAc Address : xxxxxxxxxxxxxx
HOST MACHINE :
brctl show has br0 for bridge
and virbr0 with 192.168.122.x address (created by default virtual network
NAT)
/etc/sysconfig/network-scripts/
1) Bridge BR0 (cat ifcfg-br0)
DEVICE="br0"
TYPE="Bridge"
ONBOOT="yes"
NM_CONTROLLED="no"
BOOTPROTO="static"
IPADDR="xx.xx.xx.xx"
NETMASK="255.255.254.0"
GATEWAY="xx.xx.xx.xx"
DNS1="x.y.z.s"
DNS2="x.y.q.s"
2) cat ifcfg-em1
NM_CONTROLLED="yes"
HWADDR="02:12D:E2:B1:32&q...
2011 Sep 11
4
CentOS 6: ethernet "ifconfig up" failure
On my CentOS 6 partition of my laptop:
First note that for this test, NetworkManager is not
running because I did:
chkconfig --del NetworkManager
and then rebooted.
Here is my ifcfg-eth0:
DEVICE="eth0"
NM_CONTROLLED="no"
ONBOOT=no
HWADDR=xx:xx:xx:xx:xx:xx
TYPE=Ethernet
BOOTPROTO=none
IPADDR=192.168.2.5
PREFIX=24
GATEWAY=192.168.2.1
DNS1=192.168.2.1
DNS2=192.168.2.1
DEFROUTE=yes
IPV4_FAILURE_FATAL=yes
IPV6INIT=no
NAME="System eth0"
UUID=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
I reboot to level3, do startx (to KDE 4...
2005 Sep 28
3
virtual interfaces
...e running.
I would like to add a virtual interface to one of my LAN interfaces.
My LAN interface (/etc/sysconfig/network-scripts/ifcfg-eth2) looks like:
DEVICE=eth2
BOOTPROTO=static
BROADCAST=192.168.10.255
HWADDR=00:60:08:C3:F9:71
IPADDR=192.168.10.1
NETMASK=255.255.255.0
NETWORK=192.168.10.0
ONBOOT=yes
TYPE=Ethernet
would adding the below:
/etc/sysconfig/network-scripts/ifcfg-eth2:0
DEVICE=eth2:0
BOOTPROTO=static
BROADCAST=192.168.20.255
HWADDR=00:60:08:C3:F9:71
IPADDR=192.168.20.1
NETMASK=255.255.255.0
NETWORK=192.168.20.0
ONBOOT=yes
TYPE=Ethernet
Would this create a virtual interface...
2011 Oct 24
1
onboot=yes not working for eth0.x:y interfaces?
Hi,
I ran into a Problem when using alias interfaces with vlans on a centos 5 box.
When I define such an interface and do a "service network restart" the
alias interface doesn't get started. Starting it manually works fine.
Also after changing DEVICE=eth0.10:0 to DEVICE=eth0:0 in the config file
the interface is started after a network restart.
Does anyone have an idea what the
2012 Oct 02
2
Weird behaviour of ifcfg scripts
Hi,
I accidentally found that the existence of a file e.g. named
ifcfg-eth1:1 put in /etc/sysconfig/network-scripts/ leads to the
appropriate interface being created even with the option 'ONBOOT' set to
'no':
DEVICE="eth1:1"
BOOTPROTO="static"
NM_CONTROLLED="no"
ONBOOT="no"
TYPE="Ethernet"
IPADDR=12.34.56.78
NETMASK=255.255.255.0
Is that intended behaviour?