The command in Linux terminal equivalent to Windows' ipconfig command is ifconfig.What is the command for the Windows ipconfig in the terminal of Linux?
In newer versions of Linux, the ifconfig command has been deprecated and replaced by the ip command. To find the gateway address using the ip command, you can run the following command in the terminal:Ok I had to install net tools first but the ifconfig command did not show me the gateway address!
ip route | grep default | awk '{print $3}'
You're welcome! Glad I could help. If you have any more questions, feel free to ask. I'm always here to help!Thank you that worked 100%, you just so clever![]()