Linux ih01.iridiumhosting.com 5.14.0-611.55.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 19 15:19:29 EDT 2026 x86_64
LiteSpeed
Server IP : 67.227.241.211 & Your IP : 216.73.216.208
Domains :
Cant Read [ /etc/named.conf ]
User : dustinhy
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
MXB /
rear /
usr /
share /
rear /
rescue /
GNU /
Linux /
Delete
Unzip
Name
Size
Permission
Date
Action
220_load_modules_from_initrd.sh
1.3
KB
-rw-r--r--
2026-04-01 09:39
230_storage_and_network_modules.sh
1.7
KB
-rw-r--r--
2026-04-01 09:39
240_kernel_modules.sh
1.08
KB
-rw-r--r--
2026-04-01 09:39
250_udev.sh
449
B
-rw-r--r--
2026-04-01 09:39
260_collect_initrd_modules.sh
295
B
-rw-r--r--
2026-04-01 09:39
260_storage_drivers.sh
114
B
-rw-r--r--
2026-04-01 09:39
290_kernel_cmdline.sh
3.43
KB
-rw-r--r--
2026-04-01 09:39
295_configure_ramdisk_rootfs.sh
542
B
-rw-r--r--
2026-04-01 09:39
300_dns.sh
267
B
-rw-r--r--
2026-04-01 09:39
310_network_devices.sh
36.6
KB
-rw-r--r--
2026-04-01 09:39
320_inet6.sh
121
B
-rw-r--r--
2026-04-01 09:39
350_routing.sh
3.65
KB
-rw-r--r--
2026-04-01 09:39
390_check_usb_modules.sh
270
B
-rw-r--r--
2026-04-01 09:39
410_use_xen_console.sh
222
B
-rw-r--r--
2026-04-01 09:39
500_clone_keyboard_mappings.sh
6.97
KB
-rw-r--r--
2026-04-01 09:39
550_copy_ldconfig.sh
307
B
-rw-r--r--
2026-04-01 09:39
950_cfg2html.sh
1
KB
-rw-r--r--
2026-04-01 09:39
960_collect_MC_serviceguard_infos.sh
1.12
KB
-rw-r--r--
2026-04-01 09:39
990_sysreqs.sh
3.91
KB
-rw-r--r--
2026-04-01 09:39
Save
Rename
# 350_routing.sh # # record routing configuration for Relax-and-Recover # # This file is part of Relax-and-Recover, licensed under the GNU General # Public License. Refer to the included COPYING for full text of license. # Where to build network routing configuration. # When booting the rescue/recovery system # /etc/scripts/system-setup.d/62-routing.sh # is run to setup the network routing: network_routing_setup_script=$ROOTFS_DIR/etc/scripts/system-setup.d/62-routing.sh # Initialize network_routing_setup_script: echo "# Network routing setup:" >$network_routing_setup_script # Skip network_routing_setup_script if the kernel command line contains the 'noip' parameter # (a kernel command line parameter has precedence over other things): cat - <<EOT >>$network_routing_setup_script # Skip network routing setup if the kernel command line parameter 'noip' is specified: grep -q '\<noip\>' /proc/cmdline && return EOT # If IP address plus a default gateway were specified at recovery system boot time # via kernel command line parameters like ip=192.168.100.2 gw=192.168.100.1 # skip network_routing_setup_script because then a default gateway was already set up # in the before running /etc/scripts/system-setup.d/60-network-devices.sh script: cat - <<EOT >>$network_routing_setup_script # If kernel command line parameters like ip=192.168.100.2 plus gw=192.168.100.1 # were specified skip the rest because a default gateway is already set up: [[ "\$IPADDR" ]] && [[ "\$GATEWAY" ]] && return EOT # Skip network_routing_setup_script if dhclient will be used cat - <<EOT >>$network_routing_setup_script # If USE_DHCLIENT=y then skip the rest as DHCP also does the routing setup as needed: is_true \$USE_DHCLIENT && ! is_true \$USE_STATIC_NETWORKING && return EOT # make route mapping available mkdir -p $v $TMP_DIR/mappings >&2 read_and_strip_file $CONFIG_DIR/mappings/routes > $TMP_DIR/mappings/routes # route mapping is available if test -s $TMP_DIR/mappings/routes ; then while read destination gateway device junk ; do echo "ip route add $destination via $gateway dev $device" >>$network_routing_setup_script done < $TMP_DIR/mappings/routes else # use original routes COPY_AS_IS+=( /etc/iproute2 ) # for policy routing # find out routing rules rules=() c=0 while read ; do rules[c]="$REPLY" let c++ done < <( ip rule list | \ cut -d : -f 2- | \ grep -Ev "from all lookup (local|main|default)" ) for rule in "${rules[@]}" ; do echo "ip rule add $rule" >>$network_routing_setup_script done # for each table, list routes # main is the default table, some distros don't mention it in rt_tables, # so I add it for them and strip doubles with uniq for table in $( { echo "254 main" ; cat /etc/iproute2/rt_tables ; } |\ grep -E '^[0-9]+' |\ tr -s " \t" " " |\ cut -d " " -f 2 | sort -u | grep -Ev '(local|default|unspec)' ) ; do ip route list table $table |\ grep -Ev 'scope (link|host)' |\ while read destination via gateway dev device junk; do device=$( get_mapped_network_interface $device ) echo "ip route add $destination $via $gateway $dev $device table $table" >>$network_routing_setup_script done ip -6 route list table $table |\ grep -Ev 'unreachable|::/96|fe80::' | grep via |\ while read destination via gateway dev device junk; do device=$( get_mapped_network_interface $device ) echo "ip route add $destination $via $gateway $dev $device table $table" >>$network_routing_setup_script done done fi