Re: [systemd-devel] systemd-nspawn network ping

2016-02-28 Thread kennedy
Thanks! it works! but I had a little question. In my container, I run `route -n` it show me 3 result ,they are: Kernel IP routing table Destination Gateway Genmask Flags Metric RefUse Iface 0.0.0.0 0.0.0.0 0.0.0.0 U 2048 00 host0 10.0.

Re: [systemd-devel] systemd-nspawn network ping

2016-02-28 Thread Kai Krakow
Am Sun, 28 Feb 2016 23:41:22 +0800 (CST) schrieb kennedy : > how to ping container to container each other in systemd-nspawn ? > I've tried --network-veth option but it doesn't work enough. You need to join all host-side veth interfaces into the same bridge. Make two files for systemd-networkd:

[systemd-devel] systemd-nspawn network ping

2016-02-28 Thread kennedy
how to ping container to container each other in systemd-nspawn ? I've tried --network-veth option but it doesn't work enough.___ systemd-devel mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/systemd-devel

Re: [systemd-devel] overriding udev rules

2016-02-28 Thread Andrei Borzenkov
Отправлено с iPhone > 28 февр. 2016 г., в 15:05, Łukasz Stelmach написал(а): > > Dnia 28 lutego 2016 12:51:51 CET, "Mantas Mikulėnas" > napisał(a): >> On Sun, Feb 28, 2016 at 12:40 PM, Łukasz Stelmach >> wrote: >> >>> Hi, >>> >>> One of the default rules supplied by systemd (v215 in Debia

Re: [systemd-devel] overriding udev rules

2016-02-28 Thread Łukasz Stelmach
Dnia 28 lutego 2016 12:51:51 CET, "Mantas Mikulėnas" napisał(a): >On Sun, Feb 28, 2016 at 12:40 PM, Łukasz Stelmach >wrote: > >> Hi, >> >> One of the default rules supplied by systemd (v215 in Debian) is >> responsible restoring the state of rfkill switches. >> >> SUBSYSTEM=="rfkill", TAG+="

Re: [systemd-devel] overriding udev rules

2016-02-28 Thread Mantas Mikulėnas
On Sun, Feb 28, 2016 at 12:40 PM, Łukasz Stelmach wrote: > Hi, > > One of the default rules supplied by systemd (v215 in Debian) is > responsible restoring the state of rfkill switches. > > SUBSYSTEM=="rfkill", TAG+="systemd", > ENV{SYSTEMD_WANTS}+="systemd-rfkill@$name.service" > > For a rea

Re: [systemd-devel] overriding udev rules

2016-02-28 Thread Michał Zegan
symlink it in /etc/udev/rules.d to /dev/null. W dniu 28.02.2016 o 11:40, Łukasz Stelmach pisze: > Hi, > > One of the default rules supplied by systemd (v215 in Debian) is > responsible restoring the state of rfkill switches. > > SUBSYSTEM=="rfkill", TAG+="systemd", > ENV{SYSTEMD_WANTS}+="sy

[systemd-devel] overriding udev rules

2016-02-28 Thread Łukasz Stelmach
Hi, One of the default rules supplied by systemd (v215 in Debian) is responsible restoring the state of rfkill switches. SUBSYSTEM=="rfkill", TAG+="systemd", ENV{SYSTEMD_WANTS}+="systemd-rfkill@$name.service" For a reason or two I'd like to override it and not restore the state. I don't wan