Displaying 12 results from an estimated 12 matches for "nozeroconf".
2004 Nov 30
2
RE: [Shorewall-devel] SFTP
...words like ''help'', ''initiated'', ''masq'' - nothing. I think
> the index might be corrupt because I get no results from anything when I
> search the archives.
>
I just took a look at a couple of systems here:
a) On a Fedora system, set NOZEROCONF to a non-empty value
in /etc/sysconfig/network.
b) There appears to be no way to disable this on SuSE short of hacking
the /etc/sysconfig/network/scripts/ifup-route script.
-Tom
--
Tom Eastep \ Nothing is foolproof to a sufficiently talented fool
Shoreline, \ http://shorewall.net
Washingt...
2015 Oct 13
1
Firewalld
...Manager except on portable machines. Can't see the need.
Here are the configuration files:
NAME="eth0"
HWADDR=52:54:00:76:0D:7F
ONBOOT=yes
UUID="8ab7ac2c-c089-4f9f-bb65-1abb781fe912"
IPV6INIT=no
BOOTPROTO=none
TYPE=Ethernet
IPADDR=96.92.106.4
PREFIX=29
GATEWAY=96.92.106.6
NOZEROCONF=yes
and
NAME="eth1"
HWADDR=52:54:00:B3:03:66
ONBOOT=yes
UUID="1d590cef-d5a2-400e-89e3-3c618f785c41"
IPV6INIT=no
BOOTPROTO=none
TYPE=Ethernet
IPADDR=192.168.6.222
PREFIX=24
DNS1=192.168.6.1
IPV4_FAILURE_FATAL=no
NOZEROCONF=yes
Emmett
2015 Oct 13
2
Firewalld
On 10/12/2015 10:17 AM, Gordon Messmer wrote:
> On 10/11/2015 03:00 PM, Emmett Culley wrote:
>> I just noticed that when rebooting a CentOS 7 server the firewall comes back up with both interfaces set to REJECT, instead of the eth1 interface set to ACCEPT as defined in 'permanent' firewalld configuration files.
>
> Rather than paraphrasing, could you show the specific
2006 Sep 10
2
Disabling IPv6 in Centos 4.x Experiences
...at so I wont list them here (removing the entire section of
ipv6 calls in IFUP is not a good idea).
How to disable ipv6 support in Centos 4.x
Pick any method, a combo or all of them
Method 1, add the line:
alias net-pf-10 off
to the /etc/modprobe.conf
Method 2 Add to /etc/sysconfig/network file:
NOZEROCONF=yes # Bonus: Disable the ugly generation of 169.254 zeroconf
networks.
NETWORKING_IPV6=no
Note about method 2. I must mention the fact that I actually READ the entire
ifup script and dependencies and I found that it calls at line 361:
# if [ "${NETWORKING_IPV6}" = "yes"...
2015 Dec 23
4
Network configuration issue with second public ip on CentOS 6
...ch the host via
the second ip from an external host. I tried it with ping and with ssh
commands.
Here the content of the config files (I anonymized the server ip with
xx.xx.xx.xx and the failover ip with yy.yy.yy.yy):
$ cat /etc/sysconfig/network
NETWORKING=yes
HOSTNAME=<name-of-my-host>
NOZEROCONF=true
GATEWAY=xx.xx.xx.254
$ cat /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE=eth0
BOOTPROTO=static
IPADDR=xx.xx.xx.xx
NETMASK=255.255.255.0
ONBOOT=yes
GATEWAY=xx.xx.xx.254
$ cat /etc/sysconfig/network-scripts/ifcfg-eth0:0
DEVICE=eth0:0
BOOTPROTO=static
IPADDR=yy.yy.yy.yy
NETMASK=255.255.255.2...
2005 Nov 10
7
simple routing query
Hi,
I have 2 interfaces - one for adsl and other for LAN on my Linux gateway
machine. The IP addresses are 10.10.10.3 & 192.168.10.101 respectively.
Now my routing tables show this particular entry. What exactly is this?
169.254.0.0/16 dev eth0 scope link
Or by traditional route -n,
169.254.0.0 0.0.0.0 255.255.0.0 U 0 0 0 eth0
What exactly is this 169.254.0.0/16
2019 Oct 03
0
Upgrade from 7.6.1810 to 7.7.1908 -> Interfaces order not static
...https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/7/html/networking_guide/sec-understanding_the_device_renaming_procedure
then I am doing the correct thing by adding the MAC as in so:
DEVICE=eth0
IPADDR=...
...
GATEWAY=...
ONBOOT=yes
BOOTPROTO=none
USERCTL=no
NOZEROCONF=true
TYPE=Ethernet
NM_CONTROLLED=no
HWADDR=01:23:45:67:78:9a
This works for eth0 but all the other ones the kernel complains
/etc/sysconfig/network-scripts/ifup-eth: Device eth[1,2,3] has different MAC address than expected, ignoring
NOTE: this worked until yesterday, I could reboot, upd...
2009 Dec 11
0
Shorewall dual NIC and asterisk
...sterisk /shorewall server (http, ftp, dns, ...) should go through router1 10.200.229.1 via eth0
All SIP traffic (port 5060-5082 and 10000-20000) should go through dsl modem 192.168.0.254 via eth1
/etc/sysconfig/network :
NETWORKING=yes
FORWARD_IPV4="yes"
HOSTNAME=localdomain.localhost
NOZEROCONF=yes
/etc/sysconfig/network-script/ifcfg-eth0 :
DEVICE=eth0
BOOTPROTO=none
HWADDR=00:xx:xx:xx:xx:xx
ONBOOT=yes
NETMASK=255.255.255.0
IPADDR=10.200.229.10
GATEWAY=10.200.229.1
TYPE=Ethernet
/etc/sysconfig/network-script/ifcfg-eth1 :
DEVICE=eth1
HWADDR=00:xx:xx:xx:xx:xx
ONBOOT=yes
BOOTPROTO=none
TYP...
2005 Dec 12
1
Netcard don't up
Dear Friends
I have 2 netcards (eth0 to Internet and eth1 to internal network) in
CENTOS 4.2, bit when I boot system the up eth0 and et1i [OK].
When I run ifconfig the eth1 has not IP configure, then I run command
ifdown eth1 and ifup eth1, after eth1 is work perfect.
Below I show file /etc/sysconfig/network-scripts/ifcfg-eth1
# Please read /usr/share/doc/initscripts-*/sysconfig.txt
# for
2015 Dec 23
0
Network configuration issue with second public ip on CentOS 6
...ternal host. I tried it with ping and with ssh
> commands.
>
> Here the content of the config files (I anonymized the server ip with
> xx.xx.xx.xx and the failover ip with yy.yy.yy.yy):
>
> $ cat /etc/sysconfig/network
> NETWORKING=yes
> HOSTNAME=<name-of-my-host>
> NOZEROCONF=true
> GATEWAY=xx.xx.xx.254
>
> $ cat /etc/sysconfig/network-scripts/ifcfg-eth0
> DEVICE=eth0
> BOOTPROTO=static
> IPADDR=xx.xx.xx.xx
> NETMASK=255.255.255.0
> ONBOOT=yes
> GATEWAY=xx.xx.xx.254
>
> $ cat /etc/sysconfig/network-scripts/ifcfg-eth0:0
> DEVICE=eth0:0...
2017 Mar 08
10
From Networkmanager to self managed configuration files
On 08/03/17 10:38, John Hodrien wrote:
> On Wed, 8 Mar 2017, Giles Coochey wrote:
>
>> ifconfig enp0s25 192.168.0.1 netmask 255.255.255.0
>> route add default gw 192.168.0.254 enp0s25
>> echo nameserver 8.8.8.8 > /etc/resolv.conf
>> echo nameserver 8.8.4.4 >> /etc/resolv.conf
>
> Oh okay, you really do want to back away from Redhat entirely. That's
2007 Oct 22
17
neighbor table overflow
I''ve got a linux router pushing 600-1000 pppoe connections through it.
I''m getting a screen error "Neighbor Table Overflow" after this box has
been up for between 1 week and 1 month. When this is happening, routing
slows to a crawl if at all. Then dies. I''ve added:
# Added to stop "neighbor table overflow" messages in the kernel