Displaying 6 results from an estimated 6 matches for "srcaddr".
Did you mean:
src_addr
2006 Jul 25
3
problem in Route add using netlink
...t/in.h>
#include <net/if.h>
#include <stdio.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <linux/netlink.h>
#include <linux/rtnetlink.h>
#include <sys/types.h>
#define BUFSIZE 192
struct route_info{
u_int dstAddr;
u_int srcAddr;
u_int gateWay;
char ifName[IF_NAMESIZE];
};
void fillRoute (struct route_info *rinfo, const char* dstAddr,
const char* srcAddr, const char* gateway, const char* ifName)
{
/* Convert from the standrad numbers and dots notation
to binary data...
2002 Mar 01
3
iptables 1.2.5 and shorewall 1.2.8?
...------------------------------------
Already applied: submitted/2.4.4
submitted/conntrack-errormsg
submitted/ip6tables-export-symbols
submitted/ip6t_mac-fix-ipv6
submitted/ipchains-redirect-fix
submitted/ip_nat_irc-srcaddr-fix
submitted/ipt_LOG
submitted/ipt_mac-fix
submitted/ipt_MIRROR-ttl
submitted/ipt_REJECT-checkentry
submitted/ipt_unclean-ecn
submitted/module-license
submitted/netlink-tcpdiag...
2005 Mar 24
3
Asterisk as Cisco Call-Manager - dial out to PSTN
Hi all,
I'm running Asterisk since two days, and it's really one of the phatest
software available on the net!!! Respect!!! I have connected Asterisk as a
call manager for a cisco gatekeeper. Everything works fine internal, but if
I want to ring to a PSTN over another call manager, which is connected over
ISDN, I get the following output. Has anyone experience in this or can help
me?
2011 Apr 07
8
[Bug 714] New: Kernel panics in same_src()
http://bugzilla.netfilter.org/show_bug.cgi?id=714
Summary: Kernel panics in same_src()
Product: netfilter/iptables
Version: linux-2.6.x
Platform: x86_64
OS/Version: All
Status: NEW
Severity: normal
Priority: P5
Component: NAT
AssignedTo: netfilter-buglog at lists.netfilter.org
ReportedBy:
2003 Mar 20
6
[Bug 68] Kernel panic
https://bugzilla.netfilter.org/cgi-bin/bugzilla/show_bug.cgi?id=68
------- Additional Comments From laforge@netfilter.org 2003-03-20 10:55 -------
This looks strange.
The BUG in slab.c tells us that there is a GFP_ATOMIC missing. This means that
we are allocating kernel memory from softirq context with only GFP_KERNEL.
If I understand your backtrace correctly, what happens is:
- you are
2001 Oct 09
0
Bug in Linux 2.4 / iptables MAC match module (fwd)
...skb->mac.raw >= skb->head
- && skb->mac.raw < skb->head + skb->len - ETH_HLEN
+ && (skb->mac.raw + ETH_HLEN) <= skb->data
/* If so, compare... */
&& ((memcmp(skb->mac.ethernet->h_source, info->srcaddr, ETH_ALEN)
== 0) ^ info->invert));
Harald Welte writes:
> the patch has been submitted to David Miller just one minute ago.
WORKAROUND
----------
The simplest, but least secure, workaround is to avoid matching by MAC
address, but only match on IP address. This is common p...