Tagged Questions
The ifconfig tag has no wiki summary.
4
votes
3answers
49 views
C/C++ Linux MAC Address of all interfaces
I am using the following code to retrieve all MAC addresses for current computer:
ifreq ifr;
ifconf ifc;
char buf[1024];
int sock = socket(PF_INET, SOCK_DGRAM, IPPROTO_IP);
if (sock == -1) { ... };
...
4
votes
3answers
176 views
Do MTU modifications impact both directions?
ifconfig 1.2.3.4 mtu 1492
This will set MTU to 1492 for incoming, outgoing packets or both? I think it is only for incoming
4
votes
4answers
203 views
How can I fetch the ethernet port given the ip address?
I am trying to write a bash script to fetch the ethernet port of an interface whose IP address I know. I need to grab this from ifconfig but can't seem to be able to figure out how to go about it. Any ...
3
votes
5answers
255 views
Bash script issue
I can run this command fine, with the output I want:
ifconfig eth0 | grep HWaddr | awk '{print $5}'
However, when I set the command to a variable, and print the variable, I get an error:
...
1
vote
1answer
59 views
PHP select text from a complex string
I am getting output from my linux box running the ifconfig command. I do so by running the shell_exec command. I found an example but I can't seem to work further with it.
This is my current code.
...
1
vote
1answer
73 views
How to get an output formatted as “Interface: IP Address” from ifconfig on Mac
I am trying to get the following formatted output out of ifconfig:
en0: 10.52.30.105
en1: 10.52.164.63
I've been able to at least figure out how to get just the IP addresses (weeding out localhost) ...
1
vote
1answer
890 views
How to get default gateway in Mac OSX
I need to retrieve the default gateway on a Mac machine. I know that in Linux route -n will give an output from which I can easily retrieve this information. However this is not working in Mac ...
1
vote
6answers
128 views
How do I get the IP of only one Interface
When I tried ifconfig it gives me the whole all the information regarding the Network Adapter.
I tried :
system( "ifconfig -a | grep inet | "
"sed 's/\\([ ]*[^ ]*\\)\\([ ]*[^ ]*\\).*$/\\1 ...
1
vote
3answers
715 views
Solaris: Programmatic interface to ifconfig?
I'm looking for a programmatic interface to the Solaris ifconfig(1M) command.
Apparently Linux has the getifaddrs(3) command, but as far as I can tell this has not been ported to Solaris.
Short of ...
1
vote
1answer
537 views
Parse numeric ifconfig flags
The ifconfig command outputs its flags in both textual and numeric format. While I can find a reference here or there to the numeric flags, I cannot find any indication on how to interpret (mask) the ...
0
votes
0answers
23 views
Bonded NICs working LOCAL but no internet access? [closed]
The ifconfig is showing all the interfaces and up status.
Can't ping anything beyond the router. But everything else inside the network seems to be working.
I'm getting resolve the host name but the ...
0
votes
1answer
51 views
Bind outgoing traffic to eth0 instead of eth0:1
We added a second IP-Adress to a linux (debian) machine to implement a second SSL-certificate to a new Apache vhost.
Our ifconfig now looks like this:
eth0 Link encap:Ethernet Hardware Adresse ...
0
votes
1answer
82 views
How can I get the IP/MAC of the wifi router my Macbook is connected to using ifconfig?
I am trying to get the IP/MAC of the wifi router my phone is connected to, so as an experiment I did an experiment on my Macbook. Online documents says that ifconfig will show the IP/MAC of the wifi ...
0
votes
2answers
210 views
ifconfig and interfaces [closed]
just a question for my understanding. on my mac when I use ifconfig command on my mac I get the following interfaces:
en0
en1
lo0
fw0
vment0
vment1
I don't understand why there are so many. I ...
0
votes
0answers
310 views
connecting to wifi network using username and pass (GNU/Linux)
I have a problem to connect to wifi network, because I dont know how to set username and password, needed by network. I usually use "iwconfig" command to connect. But I didnt find nothing in man pages ...
0
votes
2answers
330 views
Get list of 'Friendly interface names' on a Mac (Airport, Ethernet, etc)
I'm developing an application in RealBASIC, but I need the list of interface names to populate a dropdown box.
Parsing ifconfig didn't work (Got eth0, eth1, lo, etc...)
I need the name that is ...
0
votes
2answers
479 views
ifconfig packet count
if I type ifconfig i get packet for Tx and RX ... where exactly the piece of code to increment this counter?
Is it in the network driver itself? or in the kernel ?
If possible please provide lxr ...
0
votes
2answers
758 views
Get network interface information
I know there is ifconfig command that we can list network interface info.
but i want to get information in the following pattern
Interface_Name IP_Address Net_Mask Status(up/down)
for example
eth0 ...
0
votes
1answer
181 views
How to monitor Network tarffic with MySQL?
ifconfig -output is somewhat messy thing to look at. When I saw the nice output below with the command (source), the question emerged:
Is there some more structured way, let say
MySQL, to look ...
0
votes
6answers
881 views
how to write a program to report the local IP address such as 192.168.1.102?
since my Linksys router doesn't assign a fixed local IP to the computers (PC and Mac and Linux), i'd like to write a script so that every minute, the computers will update to each other so that
...
-1
votes
1answer
110 views
change ip address of server using PHP
i need to be able to change the IP address of a server using PHP. i'm trying to use ifconfig eth0 down as the www-data user to make sure it will work. so far, i've gotten rid of a permissions issue ...