Displaying 4 results from an estimated 4 matches for "ipproto".
Did you mean:
ip_proto
2006 Feb 02
0
A question in tcng
this my tcng code.
when converting tcng to tc code, i get in the tc code for the (ipproto
"skip") =>(ipproto 57). sure, it''s taken from the mapping
/etc/protocols . ipproto is the protocol value.
what kind of "ipproto" integer value should it be to mean (ipproto "any"
) or (ipproto "whatever" ) or (ipproto "don''t_car...
2005 Jun 17
0
Help on deleting RSVP6 filter
Greetings.
I''m having some trouble deleting an rsvp6 filter that I create using the
following command:
#tc filter add dev eth1 parent 1: protocol ip rsvp6 ipproto tcp session
2020::1/22 sender 2020::2/22 flowid 1:11
The filter is created sucessfully:
# tc filter list dev eth1
filter parent 1: protocol ip pref 49152 rsvp6
filter parent 1: protocol ip pref 49152 rsvp6 fh 0x00010207 flowid 1:11 session
2020::1/22 ipproto tcp sender 2020::2/22
And is associat...
2007 Dec 20
6
DTrace IP provider, step 1
...40
1 69 10.1.100.123 <- 192.168.10.75 ip.tun0 68
0 102921 10.1.100.123 -> 192.168.10.75 ip.tun0 20
0 79 192.168.1.108 -> 192.168.5.1 nge0 92
This DTrace script provides a neat summary for both send and receive
IP traffic:
# ./ipproto.d
Tracing... Hit Ctrl-C to end.
^C
SADDR DADDR PROTO COUNT
192.168.1.108 192.168.155.32 UDP 1
192.168.1.108 192.168.17.55 UDP 1
192.168.1.108 192.168.228.54...
2000 Jan 19
3
AIX openssh patches
...cket)
{
struct sockaddr_in from;
! #ifdef _AIX
! unsigned long fromlen;
! #else
! int fromlen;
! #endif
! int i;
struct hostent *hp;
char name[MAXHOSTNAMELEN];
***************
*** 116,122 ****
{
unsigned char options[200], *ucp;
char text[1024], *cp;
! int option_size, ipproto;
struct protoent *ip;
if ((ip = getprotobyname("ip")) != NULL)
--- 121,132 ----
{
unsigned char options[200], *ucp;
char text[1024], *cp;
! #ifdef _AIX
! unsigned long option_size;
! #else
! int option_size;
! #endif
! int ipproto;
struct protoent *ip;...