search for: lladdr

Displaying 20 results from an estimated 23 matches for "lladdr".

Did you mean: dladdr
2014 Feb 05
3
[Bug 896] New: You can not add the follow kinds of sets: mark, integer, string, lladdr
https://bugzilla.netfilter.org/show_bug.cgi?id=896 Summary: You can not add the follow kinds of sets: mark, integer, string, lladdr Product: nftables Version: unspecified Platform: x86_64 OS/Version: Debian GNU/Linux Status: NEW Severity: enhancement Priority: P5 Component: nft AssignedTo: pablo at netfilter.org ReportedBy: anarey.s...
2002 Oct 25
3
Neighbour table overflow
...These may be separate issues, but I thought I would also mention the "kernel: Neighbour table overflow." error I get quite frequently. The research I have done suggests that the lo interface is not enabled. Here are some more details about this machine: | # ip nei | 10.10.10.14 dev eth0 lladdr 00:40:f4:2e:78:ef nud reachable | 10.10.10.39 dev eth0 lladdr 00:10:a4:11:38:2d nud reachable | 10.10.10.250 dev eth0 lladdr 00:04:c1:66:30:c0 nud stale | 10.10.10.251 dev eth0 lladdr 00:06:28:01:bc:80 nud reachable | 10.10.10.34 dev eth0 lladdr 00:10:a4:98:51:2c nud reachable | 10.10.10.196 dev et...
2009 Nov 02
0
[PATCHv4 3/6] qemu/net: add raw backend
...nst char *model, #endif /* !_WIN32 */ +typedef struct RAWState { + VLANClientState *vc; + int fd; + uint8_t buf[4096]; + int promisc; +} RAWState; + +static int net_raw_fd_init(Monitor *mon, const char *ifname, int promisc) +{ + int fd, ret; + struct ifreq req; + struct sockaddr_ll lladdr; + + fd = socket(PF_PACKET, SOCK_RAW, htons(ETH_P_ALL)); + if (fd < 0) + fprintf(stderr, "packet socket failed\n"); + + memset(&req, 0, sizeof(req)); + strncpy(req.ifr_name, ifname, IFNAMSIZ-1); + ret = ioctl(fd, SIOCGIFINDEX, &req); + if (ret < 0) + fprintf(stderr, "...
2009 Nov 02
0
[PATCHv4 3/6] qemu/net: add raw backend
...nst char *model, #endif /* !_WIN32 */ +typedef struct RAWState { + VLANClientState *vc; + int fd; + uint8_t buf[4096]; + int promisc; +} RAWState; + +static int net_raw_fd_init(Monitor *mon, const char *ifname, int promisc) +{ + int fd, ret; + struct ifreq req; + struct sockaddr_ll lladdr; + + fd = socket(PF_PACKET, SOCK_RAW, htons(ETH_P_ALL)); + if (fd < 0) + fprintf(stderr, "packet socket failed\n"); + + memset(&req, 0, sizeof(req)); + strncpy(req.ifr_name, ifname, IFNAMSIZ-1); + ret = ioctl(fd, SIOCGIFINDEX, &req); + if (ret < 0) + fprintf(stderr, "...
2007 Dec 31
0
ip neigh show and NUD_NOARP state - is it possible ?
...g cache). Could it be done ? (maybe with multicast/braodcast)? BTW, I see an example in the documentation which demonstrates NUD_NOARP on the loopback device, but this documentation is from quite a time ago. See: http://www.policyrouting.org/iproute2.doc.html#ss9.4.5 ... ... ip neigh ls dev lo lladdr 000000000000 nud noarp fe80200cfffe763f85 dev eth0 lladdr 00000c763f85 router nud stale 0.0.0.0 dev lo lladdr 000000000000 nud noarp 193.233.7.254 dev eth0 lladdr 00000c763f85 nud reachable Regards, Ian
2009 Aug 13
0
[PATCHv2 3/3] qemu-kvm: vhost-net implementation
...->nvqs; ++i) { + r = vhost_virtqueue_init(hdev, + vdev, + hdev->vqs + i, + vdev->vq + i, + i); + if (r < 0) + return r; + } + + return 0; +} + +int vhost_net_init(struct vhost_net *net, + VirtIODevice *dev, + char *vhost_device) +{ + struct sockaddr_ll lladdr; + struct ifreq req; + int r; + const char *ifname = vhost_device; + if (!ifname) + return 0; + + net->dev.nvqs = 2; + net->dev.vqs = net->vqs; + r = vhost_dev_init(&net->dev, dev); + if (r < 0) + return r; + + net->sock = socket(PF_PACKET, SOCK_RAW, htons(ETH_P_ALL)); + if...
2009 Aug 13
0
[PATCHv2 3/3] qemu-kvm: vhost-net implementation
...->nvqs; ++i) { + r = vhost_virtqueue_init(hdev, + vdev, + hdev->vqs + i, + vdev->vq + i, + i); + if (r < 0) + return r; + } + + return 0; +} + +int vhost_net_init(struct vhost_net *net, + VirtIODevice *dev, + char *vhost_device) +{ + struct sockaddr_ll lladdr; + struct ifreq req; + int r; + const char *ifname = vhost_device; + if (!ifname) + return 0; + + net->dev.nvqs = 2; + net->dev.vqs = net->vqs; + r = vhost_dev_init(&net->dev, dev); + if (r < 0) + return r; + + net->sock = socket(PF_PACKET, SOCK_RAW, htons(ETH_P_ALL)); + if...
2002 May 02
0
Using TEQL with two ADSL connection
....2/24 dev teql0 #ip address add 192.168.2.2/24 dev teql0 #ip link set teql0 up #ip route add default/0 dev teql0 The rp filter of eth0 and eth1 are turned off by default. After I have done some ping and traceroute but I haven''t answers then I have done #ip neigh ls 172.16.240.1 dev eth2 lladdr 00:d0:b7:49:6f:09 nud stale 172.16.1.3 dev vlan0017 lladdr 00:10:a7:0f:01:23 nud stale 172.16.4.4 dev vlan0017 lladdr 00:10:a7:12:4c:01 nud stale 172.16.97.3 dev vlan0014 lladdr 00:40:f4:34:b5:69 nud reachable #tc -s qdisc ls qdisc teql0 8001: dev eth0 Sent 829337 bytes 5807 pkts (dropped 0, over...
2009 Aug 17
1
[PATCHv3 3/4] qemu-kvm: vhost-net implementation
...->nvqs; ++i) { + r = vhost_virtqueue_init(hdev, + vdev, + hdev->vqs + i, + vdev->vq + i, + i); + if (r < 0) + return r; + } + + return 0; +} + +int vhost_net_init(struct vhost_net *net, + VirtIODevice *dev, + char *vhost_device) +{ + struct sockaddr_ll lladdr; + struct ifreq req; + int r; + const char *ifname = vhost_device; + if (!ifname) + return 0; + + net->dev.nvqs = 2; + net->dev.vqs = net->vqs; + r = vhost_dev_init(&net->dev, dev); + if (r < 0) + return r; + + net->sock = socket(PF_PACKET, SOCK_RAW, htons(ETH_P_ALL)); + if...
2009 Aug 17
1
[PATCHv3 3/4] qemu-kvm: vhost-net implementation
...->nvqs; ++i) { + r = vhost_virtqueue_init(hdev, + vdev, + hdev->vqs + i, + vdev->vq + i, + i); + if (r < 0) + return r; + } + + return 0; +} + +int vhost_net_init(struct vhost_net *net, + VirtIODevice *dev, + char *vhost_device) +{ + struct sockaddr_ll lladdr; + struct ifreq req; + int r; + const char *ifname = vhost_device; + if (!ifname) + return 0; + + net->dev.nvqs = 2; + net->dev.vqs = net->vqs; + r = vhost_dev_init(&net->dev, dev); + if (r < 0) + return r; + + net->sock = socket(PF_PACKET, SOCK_RAW, htons(ETH_P_ALL)); + if...
2009 Aug 10
0
[PATCH 3/3] qemu-kvm: vhost-net implementation
...->nvqs; ++i) { + r = vhost_virtqueue_init(hdev, + vdev, + hdev->vqs + i, + vdev->vq + i, + i); + if (r < 0) + return r; + } + + return 0; +} + +int vhost_net_init(struct vhost_net *net, + VirtIODevice *dev, + char *vhost_device) +{ + struct sockaddr_ll lladdr; + struct ifreq req; + int r; + const char *ifname = vhost_device; + if (!ifname) + return 0; + + net->dev.nvqs = 2; + net->dev.vqs = net->vqs; + r = vhost_dev_init(&net->dev, dev); + if (r < 0) + return r; + + net->sock = socket(PF_PACKET, SOCK_RAW, htons(ETH_P_ALL)); + if...
2009 Aug 10
0
[PATCH 3/3] qemu-kvm: vhost-net implementation
...->nvqs; ++i) { + r = vhost_virtqueue_init(hdev, + vdev, + hdev->vqs + i, + vdev->vq + i, + i); + if (r < 0) + return r; + } + + return 0; +} + +int vhost_net_init(struct vhost_net *net, + VirtIODevice *dev, + char *vhost_device) +{ + struct sockaddr_ll lladdr; + struct ifreq req; + int r; + const char *ifname = vhost_device; + if (!ifname) + return 0; + + net->dev.nvqs = 2; + net->dev.vqs = net->vqs; + r = vhost_dev_init(&net->dev, dev); + if (r < 0) + return r; + + net->sock = socket(PF_PACKET, SOCK_RAW, htons(ETH_P_ALL)); + if...
2020 Jul 15
4
Support for macOS feth devices
Hi, I am currently using the L2 tunnel feature of ssh between two Linux machines, and it works beautifully! As a result, I have come to prefer a workflow that uses an L2 tunnel, but I can't seem to find a long-term solution for this workflow on macOS. At the moment, tap devices on macOS can be generated using a kernel extension like tuntaposx <http://tuntaposx.sourceforge.net/>;
2003 Mar 01
2
Virtual Routers would this work?
Hello all, I need a virtual firewall/router solution. I''m thinking of a netscreen 1000 but I want to know if it can be done in Linux. Here is my idea: 1 Linux box 2 GigE interfaces 1 interface setup with a public IP address ($PUBIP) 1 interface setup with 802.1q VLAN trunking with 100 vlans assigned ($VLAN1-$VLAN100) a /25 subnet routed to $PUBIP from my core routers All $VLAN
2014 Oct 04
2
Re: Assigning IPv6 address to guest
...he two different machines. I am unable to ping outside from the VM or connect otherwise via IPv6 from the VM. I am also unable to ping the link-local addresses of the eth1 interface on the VM (via `ping6 fe80::5054:aaff:fe00:f057/64`). ip -6 nei on the VM gives me: `fe80::5054:ff:fe1d:a4bb dev eth1 lladdr 52:54:00:1d:a4:bb router STALE` -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.13 (MingW32) iQIcBAEBAgAGBQJUMFUEAAoJEEhc1G8ZKSOxaigQAKAQ7oJ3kBtxjOGHoOb5K+1K Y09DL8RjiR20F752a9SNEVOXo+GaAAGXkh2e9/9v1tO7GiW7RVg451g6AlEQi7K4 kIaB1t6X2xnum7cXqebAhD+C8QOfBrJydQTh/L227NKKXbfl1yL8zeB3v1jMBW4F Q/6V0M...
2014 Oct 05
1
Re: Assigning IPv6 address to guest
...le to ping outside from the VM or connect otherwise via IPv6 >> from the VM. I am also unable to ping the link-local addresses of the >> eth1 interface on the VM (via `ping6 fe80::5054:aaff:fe00:f057/64`). >> ip -6 nei on the VM gives me: >> `fe80::5054:ff:fe1d:a4bb dev eth1 lladdr 52:54:00:1d:a4:bb router STALE` >> >> > Hi, > > Your setup shows > virbr2 and br0 both on the same network 2607:5300:60:1156::2/64 which > will cause issues with routing. This however must not affect the pinging > of link-local addresses > > ON the virtual mach...
2005 Jul 01
0
how to ignore the arp request for the alias ip in freebsd
...ignore the arp request for alias ip ,at the same time I don't want disable the arp function of the interface ? How do ? thanks! Probably you need to assign this ip on loopback interface. This address will no more used for arp, but still can be accessible if there is route (IPv4 gw based or LLaddr gw based) for other hosts on ethernet. But, there is some drawbacks also - source IP address autoselect will not chose this IP when you connection to other host. -- Vladimir B. Grebenschikov vova@fbsd.ru
2013 Jun 28
0
Re: kernel panic in skb_copy_bits
...igh) neigh->ops->error_report(neigh, skb); write_lock(&neigh->lock); } - skb_queue_purge(&neigh->arp_queue); + __skb_queue_purge(&neigh->arp_queue); neigh->arp_queue_len_bytes = 0; } @@ -1210,7 +1212,7 @@ int neigh_update(struct neighbour *neigh, const u8 *lladdr, u8 new, write_lock_bh(&neigh->lock); } - skb_queue_purge(&neigh->arp_queue); + __skb_queue_purge(&neigh->arp_queue); neigh->arp_queue_len_bytes = 0; } out:
2014 Oct 04
0
Re: Assigning IPv6 address to guest
.... > I am unable to ping outside from the VM or connect otherwise via IPv6 > from the VM. I am also unable to ping the link-local addresses of the > eth1 interface on the VM (via `ping6 fe80::5054:aaff:fe00:f057/64`). > ip -6 nei on the VM gives me: > `fe80::5054:ff:fe1d:a4bb dev eth1 lladdr 52:54:00:1d:a4:bb router STALE` > > Hi, Your setup shows virbr2 and br0 both on the same network 2607:5300:60:1156::2/64 which will cause issues with routing. This however must not affect the pinging of link-local addresses ON the virtual machine: ping -I <eth0> <link-local of...
2004 Nov 16
1
Tinc on MacOs X
My intention is to set up tinc so that I can connect from home to an office network. All CPUs are running MacOs X, 10.2.8 or 10.3.5. I have read the tinc manual, tincd.8 and tinc.conf.5. However, I am still unclear about a few issues. First and foremost, how to I setup the VPN interfaces on the hosts, on MacOs X? Which file do I have to alter and what is the exact syntax on Os X to setup