Displaying 12 results from an estimated 12 matches for "updelay".
Did you mean:
udelay
2013 Mar 18
1
CentOS 6.4 kickstart bonding
...uot; 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 --nodefroute --bootproto=static --onboot=yes --ip=192.168.2.2 --netmask=255.255.255.0 --bondslaves=em1,em2 --bondopts=mode=active-backup,primary=em1,miimon=80,updelay=60000
# ISCSI network
network --device=p1...
2013 Aug 14
12
xen 4.3 - bridge with bonding under Debian Wheezy
...iface bond0 inet manual
slaves eth0 eth1
bond-mode 0
auto br0
iface br0 inet static
address 100.x.x.x
netmask 255.255.255.0
network 100.x.x.0
broadcast 100.x.x.255
gateway 100.x.x.19
bridge_ports bond0
bond-miimon 100
bond-lacp_rate 1
bond-downdelay 200
bond-updelay 200
address 0.0.0.0
netmask 0.0.0.0
***
***
/etc/sysctl.conf
#kernel.printk = 3 4 1 3
#net.ipv4.conf.default.rp_filter=1
#net.ipv4.conf.all.rp_filter=1
#net.ipv4.tcp_syncookies=1
net.ipv4.ip_forward=1
#net.ipv4.conf.br0.proxy_arp=1
#net.ipv4.conf.eth0.proxy_arp=1
#...
2011 Aug 26
0
Using of bonded interfaces for xen dom0 (debian)
...inet static
##bridge_ports eth0
address 192.168.1.150
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.1
slaves eth0 eth2
bond-mode active-backup
#bond-mode 802.3ad
bond-miimon 100
bond-downdelay 200
bond-updelay 200
#auto xenbr0
#iface xenbr0 inet static
# bridge_ports bond0
# #bridge_ports eth0 eth2
# address 192.168.1.150
# broadcast 192.168.1.255
# netmask 255.255.255.0
# gateway 192.168.1.1
auto bond1
iface bond1 inet static
##bridge_ports eth0
address 10.0.1.150
netm...
2015 Jul 09
1
Bond & Team: RX dropped packets
...cat /etc/sysconfig/network-scripts/ifcfg-bond0
DEVICE=bond0
IPADDR=193.109.172.106
NETMASK=255.255.255.128
USERCTL=no
BOOTPROTO=none
ONBOOT=yes
MTU=9000
IPV6ADDR=2001:67c:1148:200::106
TYPE=Bond
BONDING_MASTER=yes
NM_CONTROLLED=no
BONDING_OPTS="options bonding mode=1 primary=enp6s0 miimon=100
updelay=600000"
[root at dc106 ~]# cat /etc/sysconfig/network-scripts/ifcfg-enp7s0f0
# Network slave interface
DEVICE=enp7s0f0
USERCTL=no
ONBOOT=yes
MASTER=bond0
SLAVE=yes
BOOTPROTO=none
HWADDR=00:25:90:1A:2D:AA
NM_CONTROLLED=no
[root at dc106 ~]# cat /etc/sysconfig/network-scripts/ifcfg-enp6s0
# Ne...
2018 May 23
0
Unable to connect VMs to a bridge over bonded network on Debian 9 (works fine on Centos 7.4)
...#address 192.168.1.62
#netmask 255.255.255.0
#gateway 192.168.1.1
#dns-nameservers 192.168.1.241 192.168.1.104
# mtu 9000
auto enp1s0f1
iface enp1s0f1 inet manual
bond-master bond0
# mtu 9000
auto bond0
iface bond0 inet static
bond-miimon 100
bond-mode 6
bond-updelay 200
bond-xmit_hash_policy layer3+4
bond-lacp-rate 1
# mtu 9000
# address 192.168.1.62
# netmask 255.255.255.0
# gateway 192.168.1.1
# dns-nameservers 192.168.1.241 192.168.1.104
slaves eno1 enp1s0f1
auto br0
iface br0 inet static
address 192.168.1.62
netmask 255.255.255.0
gate...
2019 Sep 20
0
7.7.1908, interface bonding, and default route
...iginally set up my bond using nmtui
Here is my configuration:
#Bond:
BONDING_OPTS="ad_select=stable all_slaves_active=0 arp_all_targets=any
downdelay=0 fail_over_mac=none lp_interval=1 miimon=100 min_links=0
mode=802.3ad num_grat_arp=1 num_unsol_na=1 primary_reselect=always
resend_igmp=1 updelay=0 use_carrier=1 xmit_hash_policy=layer2"
TYPE=Bond
BONDING_MASTER=yes
PROXY_METHOD=none
BROWSER_ONLY=no
BOOTPROTO=none
IPADDR=a.b.c.249
PREFIX=24
GATEWAY=a.b.c.1
DNS1=a.b.d.253
DNS2=a.b.d.4
DNS3=a.b.d.12
DOMAIN=redacted.net
DEFROUTE=yes
IPV4_FAILURE_FATAL=no
IPV6INIT=yes
NAME="Bond connec...
2012 Jan 13
3
Measuring domU traffic with vnstat
...I''m trying to measure the traffic of domUs using vnstat without luck.
My configuration:
Debian 6.0.3
xen 4.0.1
vnstat 1.11
I''m using bonding with two network cards.
auto bond0
iface bond0 inet manual
slaves eth0 eth1
bond-mode active-backup
bond-miimon 100
bond-updelay 200
bond-downdelay 200
bond-primary eth0
auto br0
iface br0 inet static
address x.x.x.x
netmask x.x.x.x
network x.x.x.x
broadcast x.x.x.x
gateway x.x.x.x
bridge_ports bond0
bridge_fd 0
bridge_hello 2
bridge_maxage 12...
2019 Sep 20
2
7.7.1908, interface bonding, and default route
Hi!
I just upgraded a machine to 7.7.1908 and the default route is not being
set on boot. This particular server has a bonded interface, and the
corresponding configuration for the master is (
/etc/sysconfig/network-scripts/ifcfg-bond0):
TYPE=Bond
BOOTPROTO=none
DEFROUTE=yes
IPV4_FAILURE_FATAL=yes
NAME=bond0
DEVICE=bond0
ONBOOT=yes
IPADDR=10.3.20.131
PREFIX=24
2013 Feb 18
4
Recent hypervisor update on Debian Wheezy breaks domU networking
...ernet connected to trunks on Cisco 3750 stack with connection as
follows:-
eth0 --> bond0
eth1 --> bond0 --> br200 --> vif2.0
/etc/network/interfaces:-
iface bond0 inet manual
slaves eth0 eth1
bond_mode 5
bond-miimon 100
bond-downdelay 200
bond-updelay 200
auto br200
iface br200 inet static
address 172.31.1.66
gateway 172.31.1.65
netmask 255.255.255.240
bridge_ports bond0
bridge_maxwait 0
bridge_fd 9
bridge_hello 2
bridge_maxage 12
bridge_stp off
root at scjhb01:/home/gavin...
2013 Feb 18
4
Recent hypervisor update on Debian Wheezy breaks domU networking
...ernet connected to trunks on Cisco 3750 stack with connection as
follows:-
eth0 --> bond0
eth1 --> bond0 --> br200 --> vif2.0
/etc/network/interfaces:-
iface bond0 inet manual
slaves eth0 eth1
bond_mode 5
bond-miimon 100
bond-downdelay 200
bond-updelay 200
auto br200
iface br200 inet static
address 172.31.1.66
gateway 172.31.1.65
netmask 255.255.255.240
bridge_ports bond0
bridge_maxwait 0
bridge_fd 9
bridge_hello 2
bridge_maxage 12
bridge_stp off
root at scjhb01:/home/gavin...
2019 Feb 06
2
Pb with bounding
...ysconfig/network-scripts# cat ifcfg-bond0
DEVICE=bond0
TYPE=Ethernet
BONDING_MASTER=yes
BOOTPROTO=none
ONBOOT=yes
NM_CONTROLLED=no
# IP
IPADDR=172.16.1.128
PREFIX=16
GATEWAY=172.16.0.254
# Bonding
BONDING_OPTS="mode=802.3ad ad_select=stable use_carrier=1 miimon=100 arp_ip_target=172.16.1.128 updelay=100 lacp_rate=fast"
USERCTL=no
After a ? systemctl restart network ?:
:/etc/sysconfig/network-scripts# ip a
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope ho...
2009 Feb 04
6
Mixed dom0/domU usage?
Hi,
I'm wondering about the impact of using both dom0 and domU's on a server at
the same time. I'm worried about the performance impact of running a Mysql
server in a domU and now I'm thinking about moving the Mysql part of a LAMP
setup into dom0 and running a few Apache guests as domUs. Since the Apaches
will serve mostly from an NFS share they won't have much impact on