search for: siocaddrt

Displaying 20 results from an estimated 21 matches for "siocaddrt".

2018 Apr 15
3
tinc starts too early on boot
...206]: Error starting /usr/sbin/tincd Apr 16 06:54:43 dbtest3 tinc[3206]: SIOCSIFADDR: No such device Apr 16 06:54:43 dbtest3 tinc[3206]: rsvpn: ERROR while getting interface flags: No such device Apr 16 06:54:43 dbtest3 tinc[3206]: SIOCSIFNETMASK: No such device Apr 16 06:54:43 dbtest3 tinc[3206]: SIOCADDRT: No such device Apr 16 06:54:43 dbtest3 tinc[3206]: SIOCADDRT: No such device Apr 16 06:54:43 dbtest3 tinc[3311]: Cannot read greeting from control socket: Connection reset by peer Apr 16 06:54:43 dbtest3 tinc[3311]: Could not send TERM signal to process with PID 3218: No such process These mac...
2017 Dec 19
0
[PATCH] Implement classless static routes
...ct rtentry r; - if (dev->ip_gateway == INADDR_ANY) - return 0; - - memset(&r, 0, sizeof(r)); - - set_s_addr(&r.rt_dst, INADDR_ANY); - set_s_addr(&r.rt_gateway, dev->ip_gateway); - set_s_addr(&r.rt_genmask, INADDR_ANY); - r.rt_flags = RTF_UP | RTF_GATEWAY; - - if (ioctl(cfd, SIOCADDRT, &r) == -1 && errno != EEXIST) { - perror("SIOCADDRT"); - return -1; + /* RFC3442 demands: + If the DHCP server returns both a Classless Static Routes option and + a Router option, the DHCP client MUST ignore the Router option. */ + if (dev->routes != NULL) { + str...
2018 Jun 12
0
[PATCH v2] Implement classless static routes
...ct rtentry r; - if (dev->ip_gateway == INADDR_ANY) - return 0; - - memset(&r, 0, sizeof(r)); - - set_s_addr(&r.rt_dst, INADDR_ANY); - set_s_addr(&r.rt_gateway, dev->ip_gateway); - set_s_addr(&r.rt_genmask, INADDR_ANY); - r.rt_flags = RTF_UP | RTF_GATEWAY; - - if (ioctl(cfd, SIOCADDRT, &r) == -1 && errno != EEXIST) { - perror("SIOCADDRT"); - return -1; + /* RFC3442 demands: + If the DHCP server returns both a Classless Static Routes option and + a Router option, the DHCP client MUST ignore the Router option. */ + if (dev->routes != NULL) { + str...
2019 Oct 07
0
Where to report (possible) bugs? Redhat? Bugzilla?
...some "logger -t ifup-route.jobst ... " messages into the "/etc/sysconfig/network-scripts/ifup-route" and those messages show up BEFORE the interface is up: Oct 7 10:21:28 ifup-route.jobst: Called with eth: eth_1 (eth_1) Oct 7 10:21:28 network: Bringing up interface eth_1: SIOCADDRT: Network is unreachable Oct 7 10:21:28 network: SIOCADDRT: Network is unreachable Oct 7 10:21:28 network: SIOCADDRT: Network is unreachable Oct 7 10:21:28 network: [ OK ] The file /etc/sysconfig/network-scripts/route-eth_1 contains: -host XXX.YYY.ZZZ.1 gw AAA.BBB.CCC.DDD -host XXX.YYY.ZZZ.3...
2019 Jan 18
0
[klibc:master] ipconfig: Implement classless static routes
...ct rtentry r; - if (dev->ip_gateway == INADDR_ANY) - return 0; - - memset(&r, 0, sizeof(r)); - - set_s_addr(&r.rt_dst, INADDR_ANY); - set_s_addr(&r.rt_gateway, dev->ip_gateway); - set_s_addr(&r.rt_genmask, INADDR_ANY); - r.rt_flags = RTF_UP | RTF_GATEWAY; - - if (ioctl(cfd, SIOCADDRT, &r) == -1 && errno != EEXIST) { - perror("SIOCADDRT"); - return -1; + /* RFC3442 demands: + If the DHCP server returns both a Classless Static Routes option and + a Router option, the DHCP client MUST ignore the Router option. */ + if (dev->routes != NULL) { + str...
2018 Jun 18
1
[PATCH v3 1/2] Implement classless static routes
...ct rtentry r; - if (dev->ip_gateway == INADDR_ANY) - return 0; - - memset(&r, 0, sizeof(r)); - - set_s_addr(&r.rt_dst, INADDR_ANY); - set_s_addr(&r.rt_gateway, dev->ip_gateway); - set_s_addr(&r.rt_genmask, INADDR_ANY); - r.rt_flags = RTF_UP | RTF_GATEWAY; - - if (ioctl(cfd, SIOCADDRT, &r) == -1 && errno != EEXIST) { - perror("SIOCADDRT"); - return -1; + /* RFC3442 demands: + If the DHCP server returns both a Classless Static Routes option and + a Router option, the DHCP client MUST ignore the Router option. */ + if (dev->routes != NULL) { + str...
2014 Feb 26
4
Static routing on CentOS
...o that they can reach the simulated devices running on HOST B which are in the ip address range 20.20.20.1-20.20.20.254 , I am trying the following command but it does not configure the static route for me. [root at localhost ~]# route add -net 20.20.20.0 netmask 255.255.255.0 gw 172.29.110.93 SIOCADDRT: Network is unreachable Any help is greatly appreciated. Thanks Jatin
2018 Apr 18
0
tinc starts too early on boot
...r/sbin/tincd > Apr 16 06:54:43 dbtest3 tinc[3206]: SIOCSIFADDR: No such device > Apr 16 06:54:43 dbtest3 tinc[3206]: rsvpn: ERROR while getting interface > flags: No such device > Apr 16 06:54:43 dbtest3 tinc[3206]: SIOCSIFNETMASK: No such device > Apr 16 06:54:43 dbtest3 tinc[3206]: SIOCADDRT: No such device > Apr 16 06:54:43 dbtest3 tinc[3206]: SIOCADDRT: No such device That sounds like tinc's tun interface is not being configured correctly. Can you show us your tinc-up script? > The tinc.service file says that tinc should start after networking > (After=network.target)....
2007 Jan 22
2
routing in tunnel mode
...est setup would be using your vpn gateway as default gateway." But how does one set up a route like that, since the network is multiple hops away, the route command isn''t going to accept it? [root@vmware-espresso1 ~]# route add -net 172.16.113.0 netmask 255.255.255.0 gw 10.33.15.145 SIOCADDRT: Network is unreachable Some help please. Mike -- Michael P. Soulier <michael_soulier@mitel.com>, 613-592-2122 x2522 "Any intelligent fool can make things bigger and more complex... It takes a touch of genius - and a lot of courage to move in the opposite direction." --Albert Ei...
2010 Aug 13
2
IP aliases from a QEMU/KVM guest
...g it a virtual mac just like for eth1) : # ifcfg-eth1:1 DEVICE=eth1:1 BOOTPROTO=none PEERDNS=yes GATEWAY=IP.OF.HOST.GATEWAY HWADDR=22:22:22:22:22:22 IPADDR=IP.OF.GUEST.ETH1:1 NETMASK=255.255.255.255 ONBOOT=yes ARP=yes USERCTL=no IPV6INIT=no I get the following error when restarting the network: SIOCADDRT: Network is unreachable and IP.OF.GUEST.ETH1:1 is: - pingable from the same guest - not pingable from other guests by the same provider - not pingable from outside Setting BOOTPROTO=static or commenting out #GATEWAY=IP.OF.HOST.GATEWAY or setting: NETMASK=255.255.255.252 (the IP block was a /30, b...
2007 Mar 07
3
packet in the kernel
Hi all, Can someone say me the theoretic way of packet in the kernel. When the packet will be send to a IMQ device? When the packet arrives to post routing time? When operation of NAT occur? befor or later that the packet will send to net device? Thanks Bye Simone -- Email.it, the professional e-mail, gratis per te: http://www.email.it/f Sponsor: Problemi di Liquidità? Con Logos
2008 Jul 17
2
Making a VM directly accessible from a public IP
Hi, Currently my Xen server is working like a charm. I use Xen 3.2.1 with a Debian Etch Dom0 and Etch DomU. The VM have access to the network/internet using NAT. Each VM is given a virtual network interface and a private IP 10.0.0.x. What I would like to do know is that a VM can be directly accessible from another public IP. So my physical server is at 91.121.xx.xx. My VM is at 10.0.0.1 (on
2005 Jul 09
3
Shared interrupt in 2 domains: cards disabled
...Phys-irq i8042 14: 4688 Phys-irq ide0 The card produced sound for 4 seconds, then went mute. Moreover, the dom0 network-card also stopped operating (only xen-br0 still worked) and could not be brought back to life, not even after stopping all domains and xend: dom0:~# ifup eth0 SIOCADDRT: Network is unreachable Failed to bring up eth0. I had to reboot the system... Is this a bug or should there be no shared interrupts at all between domains? Kind regards, Arie Kraai _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists....
2008 Apr 06
1
Not sure if my bridge is the problem or my firewall
...th0 eth0 is running dhcp I also have a linksys router with an ip address of 192.168.1.1, that router is running dhcp. So 192.168.1.1 is my gateway to the internet. So I tried changing domU''s gateway to 192.168.1.1 with route add default gw 192.168.1.1 eth0 but I get this error message: SIOCADDRT: No such process Any ideas guys? I just started using Xen, well hehe, just started using linux after using windows all my life, so I''m new to the scene, but I''m very thirsty for knowledge. I''m been learning tons of stuff every day about linux, so if you can, help me ou...
2004 Sep 30
4
Could not open /dev/net/tun
Hi, I am triying to configure a VPN, my configuration files are: ****************** TINC.CONF: Name = nova # The internet host to connect with. ConnectTo = nova2 Device = /dev/net/tun #Device name.. Leave as is. Interface = vpn #Virtual Interface name. Give any suitable name. #Mode = "router" #use Router mode
2001 Mar 03
0
kernel & automount errors in messages log
...8:56:03 Nemesis rc.sysinit: Enabling swap space: succeeded Feb 26 18:56:03 Nemesis mandrake_everytime: Building Window Manager Sessions succeeded Feb 26 18:56:03 Nemesis init: Entering runlevel: 5 Feb 26 18:56:04 Nemesis network: Setting network parameters: succeeded Feb 26 18:56:04 Nemesis ifup: SIOCADDRT: Network is unreachable Feb 26 18:56:04 Nemesis network: Bringing up interface lo: succeeded Feb 26 18:56:04 Nemesis network: Bringing up interface eth0: succeeded Feb 26 18:56:05 Nemesis usb: Loading USB interface succeeded Feb 26 18:56:05 Nemesis usb: Mount USB filesystem succeeded Feb 26 18:56...
2012 Feb 23
3
Test fails in arch linux
...rm: cannot remove `/sys': Is a directory mkdir: cannot create directory `/sys': File exists /init: line 40: /sbin/udevadm: No such file or directory /init: line 41: /sbin/udevadm: No such file or directory SIOCSIFADDR: No such device eth0: ERROR while getting interface flags: No such device SIOCADDRT: No such process mdadm: No arrays found in config file or automatically Reading all physical volumes. This may take a while... No volume groups found No volume groups found /dev: total 0 c--------- 1 root root 10, 235 Feb 23 18:17 autofs c--------- 1 root root 10, 234 Feb 23 18:17 btrfs-co...
2013 Nov 22
2
Re: HA: Accessing iSCSI disc images from the RHEV Manager using libguestfs
...n udevd[88]: specified group 'cdrom' unknown udevd[88]: specified group 'tape' unknown /sbin/start_udev: line 291: /etc/sysconfig/network: No such file or directory [ 0.952509] udev: starting version 147 [ OK ] SIOCSIFADDR: No such device eth0: unknown interface: No such device SIOCADDRT: No such process mdadm: No arrays found in config file or automatically [ 2.232739] device-mapper: uevent: version 1.0.3 [ 2.233580] device-mapper: ioctl: 4.23.6-ioctl (2012-07-25) initialised: dm-devel@redhat.com Reading all physical volumes. This may take a while... No volume groups fo...
2013 Nov 22
4
Re: HA: Accessing iSCSI disc images from the RHEV Manager using libguestfs
Unfortunately, placing the link into the /boot does not work. libguestfs-test-tool failes with the same message: ************************************************************ * IMPORTANT NOTICE * * When reporting bugs, include the COMPLETE, UNEDITED * output below in your bug report. *
2014 Mar 23
2
Re: About Guest running Tiny Core Linux
On Sun, Mar 23, 2014 at 12:26:28PM +0000, Richard W.M. Jones wrote: > Secondly, we should be able to inspect all Linux guests, including > Tiny Core Linux, but it looks like in this case it is failing. This > is a bug. I had a look at how the Tiny Core Linux ISO is arranged. It loads the main operating system root partition as a single large initramfs, with optional modules loaded