SHELL BYPASS 403 |
Modern UI. Responsive. Powerful.

Faizzz-Chin Shell

: /usr/share/augeas/lenses/dist/ [ drwxr-xr-x ]
Uname\Kernel: Linux server.kxo.bgz.mybluehostin.me 3.10.0-1160.119.1.el7.tuxcare.els19.x86_64 #1 SMP Mon Mar 31 17:29:00 UTC 2025 x86_64
Server: Apache
PHP Version: 8.2.29 [ PHP INFO ]
Operating System: Linux
Server Ip: 162.240.163.222
Your Ip: 216.73.216.114
Date Time: 2025-07-11 21:09:49
User: dilseshaadi (1027) | Group: dilseshaadi (1027)
Safe Mode: OFF
Disable Function: exec,passthru,shell_exec,system

name : sysconfig_route.aug
(*
Module: Sysconfig_Route
  Parses /etc/sysconfig/network-scripts/route-${device}

Author: Stephen P. Schaefer

About: Reference
    This lens allows manipulation of *one* IPv4 variant of the
/etc/sysconfig/network-scripts/route-${device} script found in RHEL5+, CentOS5+
and Fedora.

    The variant handled consists of lines like
    "destination_subnet/cidr via router_ip", e.g.,
    "10.132.11.0/24 via 10.10.2.1"
    
    There are other variants; if you use them, please enhance this lens.
    
    The natural key would be "10.132.11.0/24" with value "10.10.2.1", but since
    augeas cannot deal with slashes in the key value, I reverse them, so that the
    key is "10.10.2.1[1]" (and "10.10.2.1[2]"... if multiple subnets are reachable
    via that router).

About: License
   This file is licenced under the LGPL v2+, like the rest of Augeas.

About: Lens Usage
  Sample usage of this lens in augtool

    * Set the first subnet reachable by a router reachable on the eth0 subnet
      > set /files/etc/sysconfig/network-scripts/route-eth0/10.10.2.1[1] 172.16.254.0/24
    * List all the subnets reachable by a router reachable on eth0 subnet
      > match /files/etc/sysconfig/network-scripts/route-eth0/10.10.2.1

About: Configuration files
  This lens applies to /etc/sysconfig/network-scripts/route-*

About: Examples
  The <Test_Sysconfig_Route> file contains various examples and tests.
*)

module Sysconfig_Route =
	autoload xfm

(******************************************************************************
 * Group:                        USEFUL PRIMITIVES
 ******************************************************************************)

(* Variable: router
   A router *)
let router = Rx.ipv4
(* Variable: cidr
   A subnet mask can be 0 to 32 bits *)
let cidr = /(3[012]|[12][0-9]|[0-9])/
(* Variable: subnet
   Subnet specification *)
let subnet = Rx.ipv4 . "/" . cidr

(******************************************************************************
 * Group:                        ENTRY TYPES
 ******************************************************************************)

(* View: entry
   One route *)
let entry = [ store subnet . del /[ \t]*via[ \t]*/ " via "
            . key router . Util.del_str "\n" ]

(******************************************************************************
 * Group:                        LENS AND FILTER
 ******************************************************************************)

(* View: lns *)
let lns = entry+

(* View: filter *)
let filter = incl "/etc/sysconfig/network-scripts/route-*"
	   . Util.stdexcl

let xfm = transform lns filter
© 2025 Faizzz-Chin