In order to set or change the IP address assigned to a certain interface in your linux machine you can use GUI. Use System -> Administration ->Network. But it is not always possible to use GUI. Sometimes you need to use terminal commands (like if you are ssh'ing).
Login as root and use the following command:
#ifconfig eth0 11.11.1.178 netmask 255.255.248.0
where eth0 is the interface you want to configure
11.11.1.178 is the ipaddress being assigned to that interface
255.255.248.0 is the subnet mask
we can use system-config-network to configure DNS settings.
Subscribe to:
Post Comments (Atom)
Securing Microservices with JWT Authentication and Data Encryption
Securing Microservices with JWT Authentication and Data Encryption Securing Microservices with JWT A...
-
Have you tried to mock a method in Kotlin? As mentioned in this guide we can simply use following code to make it work. //You can mock conc...
-
Introduction If you are working on android library project, you might be wondering how to publish it on Maven like this . Earl...
-
For scanning wifi access points at interval of 30 seconds, I have the following code. However I strongly discourage frequent scanning as i...
No comments:
Post a Comment