Skip to main content

Configuring Network on RHEL 8


1. Validate Network Configuration


2. Configure Network


Networking is managed by a service called NetworkManager. It reads the network card configuration scripts located at /etc/sysconfig/network-scripts.  Each network card can have one or many connections.

The commands to configure network are nmtui and nmcli. Another way is a GUI tool called nm-connection-editor.

nmtui is text based UI with limited options.

nmcli has rich features and you don't need to memorize. Here are nice ways to check it out.
  • man -1 nm-settings  : to check user command
  • man -5 nm-settings  : to check file formats and conventions
  • man nmcil-examples : to find examples
Example:
  • nmcli con show|add|mod|up...
  • nmcli dev show...
3. Set up Hostname and Name Resolution

To view or change the hostname, a few options are:
  • Use nmtui
  • Use hostnamectl
    • hostnamectl status
    • hostnamectl set-hostname
  • Edit /etc/hostname
To set hostname resolution, you can use DNS and edit /etc/hosts.

The definitions in /etc/hosts will be applied before the hostname in DNS is used.

Tips: /etc/hosts contains the local host and DNS servers.
/etc/hostname contains only the local server.

To communicate with the internet, you should set up the DNS. Here are a few options to set up the DNS:
  • Use nmtui
  • Use nmcli to find the static network card, do either of
    • modify the parameters: DNS1 DNS2
    • modify the option: ipv4.dns <ip-of-dns>
  • Use a DHCP server
The configuration written here will show up in /etc/sysconfig/netowrk-scripts. NetworkManager service will pick this up and push it into /etc/resolv.conf.

After all, you can verify it's configured correctly by:
  • getent hosts <servername>
It checks in both DNS and /etc/hosts to resolve the hostname.

Comments

Popular posts from this blog

Rib eye with shrimp paste

 6tbsp veg oil 1 1/4 lb bone in rib eye (1 1/2" thick) yu choy or bok choy halved lenghtwise if large 2 scallions, cut into 1'' pieces 2 garlic cloves, crushed 1 lemongrass stalk, tough outer layer removed, chopped 3'' piece ginger sliced 1/2 cup shrimp paste or crab paste 1. meidum high heat, oil grill grate + large cast-iron skillet on grill steak + salt + pepper, + 1tbsp oil rub to coat 2. bok choy in large bowl, drizzle 1tbsp oil over and season with salt. toss 3. grill steak on grate until deeply browned, 2 min per side 4. heat 4tbsp oil in skillet, cook scallions, garlic, lemongrass, giner, stir, until fragrant and starting to brown, about 1 min. Stir in shrimp paste 5. when shrimp mixture is bubbling, transfer steak to skillet. Cook. Turn every few mins, until medium rare, thickest part 125 degree. about 7 mins transfer steak to cutting borad, let rest 10 mins, set skillet with sauce aside 6. Grill boy choy, turning occas. until wilted and charred in spots, ...

Daikon And Grilled Chicken

  1. Cut radishes into quarters if smaller or into ½" pieces if larger + salt, pepper + 6 sliced scallions 2/ 2 Tbsp white wine vinegar + 1 Tbsp. prepared horseradish + 2 tsp. Dijon mustard 1/4 cup extra-virgin olive oil put half of the vinaigrette into the radish mixture 3/ 2 boneless chicken breasts, pound out to about 1/4'' thick. + salt and pepper on both sides 3 Tbsp. extra-virgin olive oil in skillet medium-high heat press down chicken firmly for good contact, 5 mins undisturbed, golden brown on one side turn over, 2 mins on the other side 4/ transfer chicken breast to vinaigrette, let sit 5 minutes Transfer to a clean cutting board cut crosswise into 4 or 5 pieces + radish salad

Automate "Loop Mount" Installation Disk on Linux

 Today I encounter an interesting task about system administration: Configure your system to automatically loop-mount the ISO of the installation disk on the directory /repo. Configure your system to remove this loop-mounted ISO as the only repository that is used for installation. Do not register your system with subscription-manager, and remove all reference to external repositories that may already exist. This is a common issue when you set up the VM: After you finish installing Linux, you want to boot the Linux normally, rather than running into the installation disk again. So when you install Linux, you attach the iso image. Later detach the iso so that Linux can boot normally. This could be easily done from virtualization software such as VirtualBox, VMWare Workstation, thanks to their user-friendly UI. However, this task asks you to do it through automation. In system admin books, this is barely mentioned. But it's still worth digging: in the scenario where you're settin...