TCP packet with RST flag not carrying DSCP


 
Thread Tools Search this Thread
Special Forums IP Networking TCP packet with RST flag not carrying DSCP
# 1  
Old 10-08-2009
TCP packet with RST flag not carrying DSCP

Hello,

I'm having an issue with TCP sockets.
When the TCP connection is terminated on one end, TCP packet with RST flag set is being sent to the sender. All the packets sent so far were carrying the DSCP 'AF21' set by me. But packet with RST flag is carrying DSCP '0'.

Is this expected or should the RST packet also carry the DSCP AF21 ?

Thanks in advance
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

XSCF, SP and Dscp - confused.

Hi all, I understand SP is a separate processor use for management purposes. I understand XSCF is the management facility (similar to IDRAC, ILOM etc). I understand that we can create multiple domains in a SPARC machine (something like VM) and we can install OS in it. I am able to use... (4 Replies)
Discussion started by: javanoob
4 Replies

2. UNIX for Dummies Questions & Answers

Get the id with specify flag

.... means multi line ddd,bug fgdrg dfdfsdfdfsd fsdfdfdfd fdfdsfdsfsd ....... flag2 ...... aaa,bug sfsfsfsfs dfdfsdfdfsd fsdfdfdfd fdfdsfdsfsd ...... flag1 ...... ddd,bug fgdrg dfdfsdfdfsd (9 Replies)
Discussion started by: yanglei_fage
9 Replies

3. Solaris

WakeOnLan, tcp packet

I'd like to use SPARC Solaris10 to 'wake up' an old PC on same LAN. what is the simplest way of doing it? (preferably without installing new software) thanks. (14 Replies)
Discussion started by: orange47
14 Replies

4. Solaris

Too much TCP retransmitted and TCP duplicate on server Oracle Solaris 10

I have problem with oracle solaris 10 running on oracle sparc T4-2 server. Os information: 5.10 Generic_150400-03 sun4v sparc sun4v Output from tcpstat.d script TCP bytes: out outRetrans in inDup inUnorder 6833763 7300 98884 0... (2 Replies)
Discussion started by: insatiable1610
2 Replies

5. AIX

Packet loss coming with big packet size ping

(5 Replies)
Discussion started by: Vishal_dba
5 Replies

6. Shell Programming and Scripting

User switching without carrying over LC_CTYPE env variable

I am using Solaris8, userA's shell '/usr/ace/prog/sdshell', AppuserB's shell '/bin/ksh'. serverT:/home/userA>LC_CTYPE=iso_8859_1; export LC_CTYPE; vtemp='userA variable'; export vtemp serverT:/home/userA>echo "LC_CTYPE=$LC_CTYPE, vtemp=$vtemp"; LC_CTYPE=iso_8859_1, vtemp=userA... (4 Replies)
Discussion started by: kchinnam
4 Replies

7. UNIX for Dummies Questions & Answers

'h' flag in du

Hey, all! Why is the "human readable" flag changing the behavior of du? And while I'm at it, can you make du only look at files, not directories. I often find myself wanting to find the largest file(s) in a dir or vol. Using 'find' itself, it seems you have to at least be able to guess the size of... (2 Replies)
Discussion started by: sudon't
2 Replies

8. IP Networking

TCP Packet size

Hi! I'm writing an application (using BSD sockets on a Linux host) which communicates over TCP/IP with an embedded device. This embedded device has an old and real slow integrated circuit (Epson S1S6000) which handles all of the TCP/IP communication for it. Problem is, this circuit (S1S6000)... (7 Replies)
Discussion started by: olle
7 Replies

9. Programming

Changing source port number of a TCP client packet

Hi all, I need to change the source port number of an outgoing TCP packet. First I have to bind the socket to a particular port(suppose 9001) but when I send the TCP packet I want to change the source port number lets say to 9002 still letting the socket to be bound to the same old port (9001).... (0 Replies)
Discussion started by: anuragrai134
0 Replies

10. Red Hat

Fedora 9 lands carrying OpenJDK 6 and more for developers

Dev Fu focuses on the fresh and free OpenJDK 6 in Fedora 9 (Sulphur) because this is great news for developers. Especially developers who want to use the best software because it’s free and it doesn’t suck. However, there is much more of interest for developers than just OpenJDK: Developers... (0 Replies)
Discussion started by: Linux Bot
0 Replies
Login or Register to Ask a Question
NetPacket::TCP(3pm)					User Contributed Perl Documentation				       NetPacket::TCP(3pm)

NAME
NetPacket::TCP - Assemble and disassemble TCP (Transmission Control Protocol) packets. VERSION
version 1.3.0 SYNOPSIS
use NetPacket::TCP; $tcp_obj = NetPacket::TCP->decode($raw_pkt); $tcp_pkt = NetPacket::TCP->encode($ip_pkt); $tcp_data = NetPacket::TCP::strip($raw_pkt); DESCRIPTION
"NetPacket::TCP" provides a set of routines for assembling and disassembling packets using TCP (Transmission Control Protocol). Methods "NetPacket::TCP->decode([RAW PACKET])" Decode the raw packet data given and return an object containing instance data. This method will quite happily decode garbage input. It is the responsibility of the programmer to ensure valid packet data is passed to this method. "NetPacket::TCP->encode($ip_obj)" Return a TCP packet encoded with the instance data specified. Needs parts of the ip header contained in $ip_obj in order to calculate the TCP checksum. "$packet-"parse_tcp_options> Returns a hash (or a hash ref in scalar context) contaning the packet's options. For now the method only recognizes well-known and widely used options (MSS, noop, windows scale factor, SACK permitted, timestamp). If the packet contains options unknown to the method, it may fail. Functions "NetPacket::TCP::strip([RAW PACKET])" Return the encapsulated data (or payload) contained in the TCP packet. This data is suitable to be used as input for other "NetPacket::*" modules. This function is equivalent to creating an object using the "decode()" constructor and returning the "data" field of that object. Instance data The instance data for the "NetPacket::TCP" object consists of the following fields. src_port The source TCP port for the packet. dest_port The destination TCP port for the packet. seqnum The TCP sequence number for this packet. acknum The TCP acknowledgement number for this packet. hlen The header length for this packet. reserved The 6-bit "reserved" space in the TCP header. flags Contains the urg, ack, psh, rst, syn, fin, ece and cwr flags for this packet. winsize The TCP window size for this packet. cksum The TCP checksum. urg The TCP urgent pointer. options Any TCP options for this packet in binary form. data The encapsulated data (payload) for this packet. Exports default FIN SYN RST PSH ACK URG ECE CWR Can be used to set the appropriate flag. exportable tcp_strip tags The following tags group together related exportable items. ":strip" Import the strip function "tcp_strip". ":ALL" All the above exportable items. EXAMPLE
The following script is a primitive pop3 sniffer. #!/usr/bin/perl -w use strict; use Net::PcapUtils; use NetPacket::Ethernet qw(:strip); use NetPacket::IP qw(:strip); use NetPacket::TCP; sub process_pkt { my($arg, $hdr, $pkt) = @_; my $tcp_obj = NetPacket::TCP->decode(ip_strip(eth_strip($pkt))); if (($tcp_obj->{src_port} == 110) or ($tcp_obj->{dest_port} == 110)) { print($tcp_obj->{data}); } } Net::PcapUtils::loop(&process_pkt, FILTER => 'tcp'); The following uses NetPacket together with Net::Divert to add a syn flag to all TCP packets passing through: #!/usr/bin/perl use Net::Divert; use NetPacket::IP qw(IP_PROTO_TCP); use NetPacket::TCP; $divobj = Net::Divert->new('yourhostname',9999); $divobj->getPackets(&alterPacket); sub alterPacket { my($packet,$fwtag) = @_; # decode the IP header $ip_obj = NetPacket::IP->decode($packet); # check if this is a TCP packet if($ip_obj->{proto} == IP_PROTO_TCP) { # decode the TCP header $tcp_obj = NetPacket::TCP->decode($ip_obj->{data}); # set the syn flag $tcp_obj->{flags} |= SYN; # construct the new ip packet $ip_obj->{data} = $tcp_obj->encode($ip_obj); $packet = $ip_obj->encode; } # write it back out $divobj->putPacket($packet,$fwtag); } TODO
Assembly of TCP fragments into a data stream Option processing Nicer processing of TCP flags COPYRIGHT
Copyright (c) 2001 Tim Potter and Stephanie Wehner. Copyright (c) 1995,1996,1997,1998,1999 ANU and CSIRO on behalf of the participants in the CRC for Advanced Computational Systems ('ACSys'). This module is free software. You can redistribute it and/or modify it under the terms of the Artistic License 2.0. This program is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose. AUTHOR
Tim Potter <tpot@samba.org> Stephanie Wehner <atrak@itsx.com> perl v5.14.2 2011-11-20 NetPacket::TCP(3pm)