Skip to main content

Questions tagged [packet]

Filter by
Sorted by
Tagged with
2 votes
1 answer
129 views

I designed the following topology: Client A -> Server B -> Server C Server C: wireguard server that NATs packets from its clients (in this case just B) before sending them to the Internet. Its ...
Maf's user avatar
  • 151
0 votes
2 answers
134 views

i have a single server which two VM(ubuntu) configured as ubuntu-edge(with frr module for routing - wan side) and ubuntu-fw(for lan side), between these machines there is a virtual internal interface. ...
Ahmad-R's user avatar
2 votes
1 answer
1k views

How to mark all packets (inbound and outbound) for specific program/ cmd in Linux using iptables or any other firewall/ tool Given that --cmd-owner option was deprecated ref:http://www.spinics.net/...
user216385's user avatar
0 votes
1 answer
1k views

I want to retrieve raw bytes of DNS response for debugging reason, for example: dig -t https clickhouse.com ;; ANSWER SECTION: clickhouse.com. 242 IN HTTPS 1 . alpn="h3,h3-29,...
Kokizzu's user avatar
  • 10.6k
1 vote
1 answer
302 views

I'm configuring Netfilter Tables to queue packets to and from the userspace, and the table configuration I have so far looks like: table inet filter { # protocols to allow set ...
wwillfred's user avatar
2 votes
1 answer
2k views

The following rule corrupts 5% of the packets by introducing a single bit error at a random offset in the packet: sudo tc qdisc change dev ens8 root netem corrupt 5% But recently it gave me the ...
Arash's user avatar
  • 123
0 votes
0 answers
872 views

I am currently sending ~9mpps, each packet is 72bytes large, and is a UDP DNS request. The packets are being sent to a Dell server I have using an intel i40e interface. The server is using all of its ...
Dave's user avatar
  • 732
0 votes
0 answers
243 views

I have recently installed Linux Mint 20.2 Cinnamon (5.0.4) (Kernel 5.4.0-74-generic) on my desktop on a separate drive from a Windows 10 install. On Linux I noticed very inconsistent connections when ...
Mandias's user avatar
  • 43
1 vote
0 answers
1k views

I need to merge keytab files and all tutorials mention kutil. But I can't find it: root@nfsserver:/etc# kutil bash: kutil: command not found But krb5-usr is already installed: krb5-user is already ...
Standard's user avatar
  • 161
3 votes
1 answer
4k views

I have question similar to this one dpkg: new pre-installation script returned error exit status 1 I'm getting error same as above when trying to install PacketTracer 7.3.1. I think I declined EULA. I ...
user3565923's user avatar
1 vote
1 answer
585 views

On a random day I was googling iptables rules to harden my desktop, and came across this post[1]. At some point the guide mentions blocking invalid TCP packets using tcp-modules with these rules; ...
atheros's user avatar
  • 266
1 vote
1 answer
848 views

I'm continuously sending packets to a UDP server after 1 second. To listen for UDP packets: ncat -klup 1234 --sh-exec "cat > /proc/$$/fd/1" However, after printing 100 packets, nothing else prints....
epistemophiliac's user avatar
0 votes
1 answer
2k views

Does it make a difference to specify packet size during ping tests (RedHat)? Engineers in my company asked for ping checks with packet size of 2000 bytes (-s 2000). On certain systems, this fails, ...
Dmitry Osinovsky's user avatar
1 vote
2 answers
5k views

Consider the following topology: I am sending ICMP (ping) packets from host B to 10.0.1.1. They reach the target and the target answers with a reply. The connectivity works fine. When running, on ...
WoJ's user avatar
  • 1,663
1 vote
1 answer
589 views

I am doing UDP socket programming in C. In order to listen to a port, I need to forward ports in my router. My question is how to avoid doing that and still being able to communicate over the internet,...
Fuel's user avatar
  • 33
1 vote
2 answers
628 views

problem: I have an application sitting on a host (let's call it host1) that sends TLS-encrypted TCP packets to another host's port 5015 (let's call it host2). Due to network restrictions, the host1 ...
thanos's user avatar
  • 123
1 vote
1 answer
3k views

problem: I have a TCP server and client that each listen on port 9000. I have the server and client deployed on two different hosts where traffic can only pass through port 80 between them. I want the ...
thanos's user avatar
  • 123
7 votes
1 answer
20k views

We are using iptables firewall. It is logging and dropping various packages depending on its defined rules. Iptables log file entries look like: 2017-08-08T19:42:38.237311-07:00 compute-nodeXXXXX ...
Hakan Baba's user avatar
0 votes
2 answers
193 views

I'm working on FreeBSD 11 and already using programs with tcpdump as a dependency, which has libpcap and libsmi as dependencies. I want to also install tshark, the console version of wireshark. I'll ...
Stilez's user avatar
  • 1,311
5 votes
1 answer
12k views

I have a trouble configuring iptables to do this: some clients send messages to a server. I want that the host server processes the messages locally (host A, as normal) but that additionally for each ...
Armando Contestabile's user avatar
0 votes
2 answers
2k views

I've recently started to follow a lecture about wireless network, and I bought an external wifi card called TL-WN722N from TP-LINK to use it for packet sniffing. I tried to use it in a Kali Linux ...
user avatar
16 votes
4 answers
15k views

AFAIK, the NIC receives all packets from the wire in a Local Area Network but rejects those packets which their destination address is not equal to its ip. I want to develop an application that ...
Rezaeimh7's user avatar
  • 263
1 vote
1 answer
2k views

I was wondering if its possible to capture all network traffic coming from a single website using tcpdump. I am interested in capturing the sizes of all incoming and outgoing packets from and to a ...
QPTR's user avatar
  • 133
3 votes
1 answer
118 views

I want one of machine have a remote control alarm running that can be triggered by any remote machine. More precisely Machine A is running the service in the background Any remote machine B can send a ...
user123456's user avatar
  • 5,288
1 vote
0 answers
118 views

Given a pcap file that is being created in the background, e.g tshark -w out.pcap > /dev/null & How can I open the changing file with wireshark wireshark -r out.pcap Does nont work
wqh29974.dsiay.com's user avatar