Displaying 4 results from an estimated 4 matches for "dnsmsq".
Did you mean:
dnsmasq
2015 Apr 21
1
C7 systemd and network configuration
...ugin). In both cases, you can remove NM and use the 'network'
>> service instead.
>>
>
> You can disable NetworkManager for now in CentOS-7 and use the network
> service .. but in reality I am not sure how long that is going to be
> 100% true. In fact, things like dnsmsq and even libvirt/qemu are
> becoming much harder to configure to work via the network service and
> are pre-configured to work with NetworkManager. (Don't yell at me, not
> my decision :D)
>
> I have decided it is likely better to bite the bullet and learn how to
> use and co...
2015 Apr 21
4
C7 systemd and network configuration
On Tue, Apr 21, 2015 at 03:46:52PM +0200, Dennis Jacobfeuerborn wrote:
> Networking isn't really controlled by systemd but by NetworkManager. I
> usually just yum remove NetworkManager* and then everything works just
> as it did in CentOS 6.
Note: NetworkManager is in CentOS6 too, and is part of the default
workstation install. The NM in CentOS7 is a bit more polished than
the NM
2015 Apr 21
0
C7 systemd and network configuration
...g-rh NetworkManager
> plugin). In both cases, you can remove NM and use the 'network'
> service instead.
>
You can disable NetworkManager for now in CentOS-7 and use the network
service .. but in reality I am not sure how long that is going to be
100% true. In fact, things like dnsmsq and even libvirt/qemu are
becoming much harder to configure to work via the network service and
are pre-configured to work with NetworkManager. (Don't yell at me, not
my decision :D)
I have decided it is likely better to bite the bullet and learn how to
use and configure Network Manager if you...
2010 Mar 26
3
[PATCH node] Update autobuild and autotest scripts for new build structure
...uot;${check}" == "${DNSMASQ_PID}" ]]; then
+ sudo kill -9 $DNSMASQ_PID
+ return
+ fi
+ fi
+ DNSMASQ_PID="0"
+}
+
+# Creates a virt network.
+# $1 - the node name
+# $2 - the network interface name
+# $3 - use DHCP (any value)
+# $4 - start dnsmsq (def. false)
+start_networking () {
+ local nodename=$1
+ local ifacename=$2
+ local use_dhcp=${3-false}
+ local start_dnsmasq=${4-false}
+ local workdir=$5
+ local definition=""
+ local network=$NETWORK
+ local xmlfile=$WORKDIR/$nodename-$ifacename.xml
+
+ debu...