What are all the Flag Values from ARP Cache entries? [closed] - linux

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 4 years ago.
Improve this question
When running "arp -a" on a linux machine, one of the values for each entry returned is "Flags." I've seen 0x0, 0x2, and 0x6 as possible values. All I have gathered so far is that 0x6 represents a permanent (ie: static and not dynamic) entry.
Is there a list somewhere of all of the possible flags for an arp cache entry? Can there ever be more than one flag for an entry?

The answer can be found here (the question "Definition of Arp result flags?"): https://superuser.com/a/822089

Related

/var/spool/mail and /var/mail/root same inode but just one link count [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 6 years ago.
Improve this question
i found something on my linux systems i don't understand.
The files /var/spool/mail/root and /var/mail/root point to the same inode but the link count is 1. This is the same on a ubuntu and a centos server.
When i create hardlinks to a file the hardlink count increases with every new file.
Why is the link count just one?
That is because /var/mail is a symbolic link to /var/spool/mail.

samb.conf: Where is the "security" parameter? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
I'm trying to make files in my linux virtual server browsable from my windows. I'm following the instructions given here: https://help.ubuntu.com/lts/serverguide/samba-fileserver.html
However, I cannot find the security parameter it's talking about. Can I just create that anywhere under the [global]? Or is there a pretty specific place to put it?
Yep, you can just specify the "security=" parameter anywhere in the global section.
https://www.samba.org/samba/docs/man/manpages/smb.conf.5.html

Make changes with Ubuntu kernel [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
I want to modify sched.h to add in some scheduling algorithm. I use find / -name sched.h command finding a lot of results.But which one should I really modify ?
And in /usr/src,there are a lot of relating folders whose names are similiar. I'm using ubuntu14.04. Where are my real source code?
use uname -a to see which kernel you are currently running. After that, i would edit the /include/linux/sched.h for that kernel.

The difference between the LV state "inactivate"/"active" in Linux [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
We know Linux LV has active and inactive status. What's the difference between these two status?
Well...I google-d a lot these days and also referred to some books and documents,
1. If a LV is in active state, but not in a mount state, it can be seen by the Kernel, or
Kernel processes/threads can still use this LV.
2. If a LV is in inactive state, it cannot be available by the Kernel.
Hope that helps. Thanks.

how is the journey of packet in kernel? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this question
I wanted to know what exactly does happen to a packet by the time it goes to a linux kernel, until it comes out of kernel and goes as application layer.
There is a nice paper PATH OF A PACKET IN THE LINUX
KERNEL STACK(pdf), with examples and links to the kernel source code.

Resources