ifconfig (short for interface configuration) is a system administration utility in Unix-like operating systems to configure, control, and query TCP/IP network interface parameters from a command line interface (CLI) or in system configuration scripts.

learn more… | top users | synonyms

0
votes
1answer
118 views

ifconfig eth0:1 192.168.3.1 netmask 255.255.255.0 return SIOCSIFFLAGS: Cannot assign requested address

I'm setting an alias IP on eth0 by using 'ifconfig eth0:1 192.168.3.1 netmask 255.255.255.0'. But there's an error popup: SIOCSIFFLAGS: Cannot assign requested address SIOCSIFNETMASK: Cannot assign ...
0
votes
2answers
85 views

issue with creating perl script to imitate linux command “ifconfig”

I have an assignment in which I am to create a perl script in Linux to imitate the command "ifconfig". This command basically shows you information about your network interfaces. I have already ...
0
votes
1answer
78 views

How to Display IFconfig information with perl program in Linux

I have an assignment where i am supposed to create a perl script in linux that will give an output similar to that of the linux command "ifconfig". I have started writing the script but I repeatedly ...
0
votes
0answers
65 views

kvm virtual machine hwaddr

I have installed KVM on Ubuntu 12.04. Then I create 2 VMs using KVM. When I check do ifconfig, I find that Virbr0 and Vnet2 have the same HWaddr: li@li-HP:~$ ifconfig eth0 Link encap:Ethernet ...
1
vote
2answers
401 views

add and remove IP addresses to an interface using ioctl or netlink

Is there anyway to add and remove IP addresses from an interface (like loopback) in C? I found ioctl and a few documents explaining how to do that (e.g. this link), however they are all for setting ...
2
votes
2answers
229 views

Can I detect network and netmask of the configured connected device with static IP

I am running Linux device with wired network interface. Another end of this interface is plugged into another network-aware device that is configured to use some static IP address and some netmask. ...
0
votes
0answers
43 views

Change MTU to a smaller value manually, than change it back, got a error

I tested this issue with both physical interface card(i82574l) ,and virtual interface(para virtual driver on xen) whose parent is 82579L. If i use ifconfig em0 mtu 700 to change mtu from 1500, I can ...
1
vote
2answers
327 views

Extracting netmask from ifconfig output and printing it in CIDR format

I need to extract the netmask for two sets of IPs and print it in CIDR format, out on to the screen. Thinking of using either shell or tcl to do this. Guess the major sticky points here is converting ...
0
votes
1answer
118 views

SMSC911x network interface cards' light never comes back on after cable replugged

I have this strange problem in an embedded system (linux) we build, so I don't have normal GUI trouble-shooting tools on Linux or Windows machines. The problem is the NIC is no longer usable after ...
0
votes
0answers
89 views

Cant get usb wireless adapter to work after ifconfig down/up in linux [closed]

I'm a little new to linux im using backtrack 5 on a vm ware! I have a linksys usb network adapter (rt73usb) thats works great, when i first plug it in I can connect to networks and use all its ...
0
votes
2answers
535 views

Get IP address from ifconfig using PHP

I have the next php code: <?php $ip = shell_exec("/sbin/ifconfig | grep 'inet:'| grep -v '127.0.0.1' | cut -d: -f2 | awk '{ print $1}'"); echo $ip; ?> It works fine when I run it from ...
1
vote
3answers
2k views

How to I get the primary IP address of the local machine on Linux and OS X?

I am looking for a command line solution that would return me the primary (first) IP address of the localhost, other than 127.0.0.1 The solution should work at least for Linux (Debian and RedHat) and ...
2
votes
3answers
528 views

Extracting an IP address to a variable using Expect script

Hi I am new to Expect scripting, and I have been trying to fetch an IP address into a variable using following : set timeout -1 spawn $env(SHELL) match_max 100000 send "ifconfig | grep -A 1 'eth1' | ...
0
votes
1answer
158 views

How can i get the maximum transfer rate of any given network interface

Is there a way to obtain the maximum and current data transfer rate (kbps) with ifconfig or route for any given network interface? I am not sure i completely understand what exactly it is that i am ...
3
votes
1answer
293 views

Reading the output of a terminal command in java with BufferedReader

Noobie at java just starting, would appreciate any help. So my code is this and for some reason I cant get the output to work..I ve been sitting at this for hours.. package askisi1; import ...
-1
votes
1answer
2k views

Set static ip if not obtained from DHCP (script) [closed]

I work on embedded device with linux on it. I want to use DHCP client first, but if there will be no answer from DHCP Server I want to set static-default IP. I suppose it shouldn't be complicated, but ...
0
votes
2answers
171 views

How to cut ifconfig to get eth* details alone?

I'm writing a script to print ethtool details of ifconfig. Sample output should be from ifconfig is like, eth0 eth1 eth2 I have tried using below command, root@bt# ifconfig | cut -d ":" -f 1 ...
1
vote
1answer
152 views

Retrieveing eth0 ipv6 address on linux

I'm looking to use my eth0 ipv6 address in one of my shell scripts. I could retrieve it using ifconfig and grep, but I'm certain that it must be somewhere in some text file I'm not seeing, which would ...
0
votes
3answers
486 views

Using ifconfig to check whether I'm on local WiFi or 3G

For a bash script I want to determine whether my device has Wi-Fi. The easiest way for me would be ifconfig and some regex. So I want to check if my interface en0 has a valid IP or not. ifconfig en0 ...
0
votes
1answer
1k views

Use ifconfig to turn on network in Android but it doesn't work

I have tried to use adb shell to operate the network interface of my phone(HTC Desire Z). You can see in the image ,I ping a site first,then turn 3G network down ,and ping it again ,it said Network is ...
0
votes
4answers
140 views

How can I toggle an interface every second in a Bash loop?

I want to put an interface down and up every 1 second for 80 times, how can I implement this by a bash script? Something like this? COUNT = 80 for n in $(seq -w 1 $COUNT); do case $n in ...
0
votes
0answers
50 views

Meaning of “receive packets” in kernel statistics

I have a question for you. I have to know if the "receive packets" statistic that is present in a lots of file and is accessible with a lots of commands (like ifconfig, netstat and so on) is the ...
0
votes
0answers
246 views

Unable to change mac address for usb0 in Angstrom Linux, I get random mac address

I am trying to change mac address for usb0 on Angstrom Linux but with no successful results First I have root@beagleboard:~# ifconfig usb0 usb0 Link encap:Ethernet HWaddr EE:9D:6B:A7:DB:FE ...
1
vote
2answers
705 views

How to use pipe to parse output of a command

I want to process the output of a process, say ifconfig. As you all know output of ifconfig is a list of lines containing inet addr: mask: etc. But I want to extract the ip alone[from inet addr: ...
0
votes
2answers
1k views

set ifconfig eth0 “ipadress” via app on android device

I am currently working on a custom android platform with RJ45 Lan connection, the problem now, is that I would like to be able to set the ip adress from my custom app.. using 'ifconfig' works from ...
17
votes
5answers
26k views

no network in Android x86 on VirtualBox 4.1.2

My issue is nearly identical to this question. I tried those solution and none worked. But I am using a different Android x86 image. I'm using the ICS (4.0-RC1) asus_laptop image. (I tried a different ...
0
votes
4answers
823 views

SIP and EC2 elastic IPs

I'm trying to make a custom SIP software work on an EC2 instance. My software at the moment doesn't have NAT handling capabilities, and I was wondering If I could get it to work transparently with the ...
0
votes
3answers
1k views

Parsing data from ifconfig with awk or sed?

I am trying to parse some data from ifconfig output with sed, but I am not able to do it correctly. I want the command to extract just the number I am after. For example, I am interested in ...
0
votes
1answer
63 views

Share Internet on the same interface OS X

I have a laptop with only one Ethernet port and I connect to the internet through it using DHCP to get my IP. I also have a LAN which needs to connect to the Internet. The ONLY way to achieve this is ...
0
votes
3answers
113 views

inet or inet6 in freebsd

I am trying to get network interface information from struct ifaddrs How can I determine if the interface I am looking at is of inet (ipv4) or inet6 (ipv6)?
1
vote
1answer
215 views

How can I configure IP address from class E on Linux? [closed]

I want to use Class E IP address on Linux. How can I configure IP address from class E on Linux? If I command 'ifconfig' using class E IP, it returs the follwing answer. ifconfig: SIOCSIFADDR: ...
6
votes
3answers
3k 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) { ... }; ...
0
votes
1answer
2k 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 ...
-1
votes
2answers
1k 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 ...
0
votes
1answer
1k 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 ...
1
vote
1answer
146 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
337 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) ...
16
votes
1answer
26k 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 ...
4
votes
2answers
3k 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 ...
4
votes
3answers
1k 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
528 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 ...
1
vote
0answers
697 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 ...
1
vote
6answers
245 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
2answers
1k 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 ...
3
votes
5answers
621 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: ...
3
votes
3answers
2k 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 ...
0
votes
2answers
807 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
2k 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 ...
2
votes
1answer
913 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
1answer
461 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 ...

1 2