Re: kern/177032: [arge] arge1 fails to attach on UBNT Routerstation

2013-03-26 Thread linimon
Old Synopsis: arge1 fails to attach on UBNT Routerstation New Synopsis: [arge] arge1 fails to attach on UBNT Routerstation Responsible-Changed-From-To: freebsd-bugs->freebsd-net Responsible-Changed-By: linimon Responsible-Changed-When: Wed Mar 27 01:51:56 UTC 2013 Responsible-Changed-Why: Over to

Re: kern/177194: [netgraph] Unnamed netgraph nodes for vlan interfaces

2013-03-26 Thread linimon
Old Synopsis: Unnamed netgraph nodes for vlan interfaces New Synopsis: [netgraph] Unnamed netgraph nodes for vlan interfaces Responsible-Changed-From-To: freebsd-bugs->freebsd-net Responsible-Changed-By: linimon Responsible-Changed-When: Wed Mar 27 01:50:11 UTC 2013 Responsible-Changed-Why: Over

Re: kern/177400: [jme] JMC25x 1000baseT establishment issues

2013-03-26 Thread linimon
Old Synopsis: jme(4): JMC25x 1000baseT establishment issues New Synopsis: [jme] JMC25x 1000baseT establishment issues Responsible-Changed-From-To: freebsd-bugs->freebsd-net Responsible-Changed-By: linimon Responsible-Changed-When: Wed Mar 27 01:47:27 UTC 2013 Responsible-Changed-Why: Over to main

Re: kern/177384: [igb] [patch] Updating igb manpage/code with info about num_queues

2013-03-26 Thread linimon
Old Synopsis: [patch] Updating igb manpage/code with info about num_queues New Synopsis: [igb] [patch] Updating igb manpage/code with info about num_queues Responsible-Changed-From-To: freebsd-bugs->freebsd-net Responsible-Changed-By: linimon Responsible-Changed-When: Wed Mar 27 01:46:24 UTC 2013

Re: kern/177362: [netinet] [patch] Wrong control used to return TOS

2013-03-26 Thread linimon
Old Synopsis: Wrong control used to return TOS. [patch] New Synopsis: [netinet] [patch] Wrong control used to return TOS Responsible-Changed-From-To: freebsd-bugs->freebsd-net Responsible-Changed-By: linimon Responsible-Changed-When: Wed Mar 27 01:45:58 UTC 2013 Responsible-Changed-Why: Over to m

Re: kern/177402: [igb] [pf] problem with ethernet driver igb + pf / altq [regression]

2013-03-26 Thread linimon
Old Synopsis: problem with ethernet driver igb + pf / altq New Synopsis: [igb] [pf] problem with ethernet driver igb + pf / altq [regression] Responsible-Changed-From-To: freebsd-amd64->freebsd-net Responsible-Changed-By: linimon Responsible-Changed-When: Wed Mar 27 01:43:37 UTC 2013 Responsible-

Re: ntpd bind() failure: Can't assign requested address

2013-03-26 Thread Eggert, Lars
Hi, On Mar 26, 2013, at 15:39, kit wrote: > > try setting ipv6_activate_all_interfaces to yes I had that set all along. > and configuring the corresponding $ifconfig_IF_ipv6 in your rc.conf if you > haven't done so already Can't really do this, because dhclient needs to have finished so I ca

Re: ntpd bind() failure: Can't assign requested address

2013-03-26 Thread kit
--- On Tue, 3/26/13, kit wrote: > --- On Tue, 3/26/13, Eggert, Lars > > wrote: > > On Mar 26, 2013, at 12:59, > >  wrote: > > > How do you configure your network interfaces? > Using > > /etc/start_if* or /etc/rc.conf? > > > > The latter. > > > > (Actually, most of them are configured in rc.loc

Re: ntpd bind() failure: Can't assign requested address

2013-03-26 Thread kit
--- On Tue, 3/26/13, Eggert, Lars wrote: > On Mar 26, 2013, at 12:59, > wrote: > > How do you configure your network interfaces? Using > /etc/start_if* or /etc/rc.conf? > > The latter. > > (Actually, most of them are configured in rc.local with a > bit of shell code that generates the IP addre

Re: ntpd bind() failure: Can't assign requested address

2013-03-26 Thread Eggert, Lars
On Mar 26, 2013, at 12:59, wrote: > How do you configure your network interfaces? Using /etc/start_if* or > /etc/rc.conf? The latter. (Actually, most of them are configured in rc.local with a bit of shell code that generates the IP address from the MAC address for a set of machines.) Lars __

Re: ng_netflow patch for AS filling

2013-03-26 Thread devel
Patch for injecting information network->as_number from extrernal sources (RIPE database, for example) into kernel and filling src and dst AS-number in Netflow v5 datagrams. + o1=(htonl(rec->src_addr)>>24)&0xFF; + o2=(htonl(rec->src_addr)>>16)&0xFF; + o3=(htonl(rec->src_addr)>>8

Re: ntpd bind() failure: Can't assign requested address

2013-03-26 Thread ktsin
How do you configure your network interfaces? Using /etc/start_if* or /etc/rc.conf? ___ freebsd-net@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-net To unsubscribe, send any mail to "freebsd-net-unsubscr...@freebsd.org"

Re: ng_netflow patch for AS filling

2013-03-26 Thread Alexander V. Chernikov
On 26.03.2013 14:14, Stas Timokhin wrote: > Hello ! Hello. > > > > Patch for injecting information network->as_number from extrernal > sources (RIPE database, for example) into kernel and filling src and dst > AS-number in Netflow v5 datagrams. > > > > http://www.stasyan.com/devel/ng_netfl

Re: ntpd bind() failure: Can't assign requested address

2013-03-26 Thread Eggert, Lars
Hi, >> I confirm I have the same issue on 9.1 r247912 , as below: same here, on FreeBSD 10.0-CURRENT #5 r+16848a4-dirty: Mar 26 11:43:17 ntpd[2783]: bind() fd 23, family AF_INET6, port 123, scope 1, addr fe80::92e2:baff:fe2b:3a00, mcast=0 flags=0x11 fails: Can't assign requested address Mar 2

ng_netflow patch for AS filling

2013-03-26 Thread devel
Hello ! Patch for injecting information network->as_number from extrernal sources (RIPE database, for example) into kernel and filling src and dst AS-number in Netflow v5 datagrams. http://www.stasyan.com/devel/ng_netflow/patch_ngnetflow_asnum.txt Example of converted RIPE-da

ng_netflow patch for AS filling

2013-03-26 Thread Stas Timokhin
Hello ! Patch for injecting information network->as_number from extrernal sources (RIPE database, for example) into kernel and filling src and dst AS-number in Netflow v5 datagrams. http://www.stasyan.com/devel/ng_netflow/patch_ngnetflow_asnum.txt Example of converted RIPE-da