User contributions for Admin

From Wiki.IT-Arts.net
A user with 188 edits. Account created on 14 May 2024.
Search for contributionsExpandCollapse
⧼contribs-top⧽
⧼contribs-date⧽
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)

3 August 2024

  • 14:3514:35, 3 August 2024 diff hist +2 ALCATEL - Show Interface TranceiverNo edit summary
  • 14:3414:34, 3 August 2024 diff hist −7 ALCATEL - Show Interface TranceiverNo edit summary
  • 14:2514:25, 3 August 2024 diff hist +542 N PALO-ALTO - Base CommandsCreated page with "Category:Post-It == Show Interfaces == <nowiki> show interface all > configure Entering configuration mode [edit] # show network interface ethernet ethernet1/2</nowiki> == Display the routing table == <nowiki> show routing route</nowiki> Look at routes for a specific destination : <nowiki> show routing fib virtual-router <name> | match <x.x.x.x/Y></nowiki> == Show NAT == Show the NAT policy table <nowiki> show running nat-policy</nowiki> =..." current
  • 14:2314:23, 3 August 2024 diff hist +268 N BASH - Show SWAP Usage.shCreated page with "Category:Post-It <nowiki> #!/bin/sh # # LIST SWAP USAGE BY APPLICATION for file in /proc/*/status ; do grep -q "VmSwap" $file;if [ $? -eq 0 ]; then awk '/VmSwap|Name/{printf $2 " " $3}END{ print ""}' $file; fi done|grep -v '0 kB' | sort -k 2 -n exit 0</nowiki>" current
  • 14:2214:22, 3 August 2024 diff hist +1,351 N ALCATEL - VLAN ExamplesCreated page with "Category:Post-It VLAN EXAMPLES FOR ALCATEL == Single Port Tagged/Untagged Traffic == Renaming interface : <nowiki> interfaces port 5/1/44 alias "<NAME>"</nowiki> Setting the VLAN : <nowiki> vlan 2139 members port 5/1/44 untagged vlan 2150 members port 5/1/44 tagged vlan 2152 members port 5/1/44 tagged vlan 2154 members port 5/1/44 tagged</nowiki> == LACP Ports Tagged/Untagged Traffic == Creating the LACP interface : <nowiki> linkagg lacp agg 11 size 2..." current
  • 14:2114:21, 3 August 2024 diff hist +14,761 N ALCATEL - Basic commands on Alcatel OmniswitchCreated page with "Category:Post-It SOURCE : * http://www.latouche.info/admin/user_guides/omniswitch.html == Introduction == This page is based on the notes I took when managing Alcatel Omniswitchs 6600, 6800 in 2007 and later 6850. The full documentation can be found on Alcatel-Lucent website. Managing the configuration files Alcatel Omniswitchs can operate in two modes: working and certified (show running-directory to know in which mode the switch is). In working mode, the conf..." current
  • 14:2114:21, 3 August 2024 diff hist +159 N BASH - Show Public IP.shCreated page with "Category:Post-It <nowiki> #!/bin/sh wget -q -O - checkip.dyndns.org|sed -e 's/.*Current IP Address: //' -e 's/<.*$//' && echo "Done !" exit 0</nowiki>" current
  • 14:2014:20, 3 August 2024 diff hist +1,656 N ALCATEL - Show Interface TranceiverCreated page with "Category:Post-It Platforms Supported :<br /> Alcatel OmniSwitch 6400, 6850, 6850E, 6855, 9000E == show interfaces transceiver == Displays the DDM information for the specified transceivers. <nowiki> show interfaces [slot | slot/port[-port2]] transceiver [ddm | w-low | w-high | a-low | a-high | actual]</nowiki> Syntax Definitions : * slot ** The slot number for a specific module. * slot/port[-port2] ** The slot and port number (3/1). Use a hyphen to specify..."
  • 14:1814:18, 3 August 2024 diff hist +16 OPENCONNECT - ManpageNo edit summary current
  • 14:1714:17, 3 August 2024 diff hist +6,490 N OPENCONNECT - ManpageCreated page with "Category:Post-It For Fortigate : <nowiki> openconnect --protocol=fortinet fortigate.example.com</nowiki> <nowiki> openconnect --help Usage: openconnect [options] <server> Open client for multiple VPN protocols, version v9.01-3 Using GnuTLS 3.7.9. Features present: TPMv2, PKCS#11, RSA software token, HOTP software token, TOTP software token, Yubikey OATH, System keys, DTLS, ESP --config=CONFIGFILE Read options from config file -V, --version..."

28 July 2024

  • 12:4812:48, 28 July 2024 diff hist +1,254 N OPTICAL-FIBER - SFP CheatSheetCreated page with "Category:Post-It == SFP And SFP+== {| class="wikitable" style="margin:left" |+ SFP Optical Modules |- ! Code !! Speed !! Wavelenght || Distance |- | SX || 1.25G || 850nm LC || 550m |- | LX || 1.25G || 1310nm LC || 10km/20km |- | EX || 1.25G || 1550nm LC || 40km |- | ZX || 1.25G || 1550nm LC || 80km |} {| class="wikitable" style="margin:left" |+ SFP+ Optical Modules |- ! Code !! Speed !! Wavelenght || Distance |- | SR || 10G || 850nm LC || 300m |- | LR || 10G || 13..." current

21 July 2024

  • 15:2215:22, 21 July 2024 diff hist +1,420 N FORTIGATE - Packet SnifferCreated page with "Category:Post-It == Verbose Levels Detail == * 1: print header of packets. * 2: print header and data from IP of packets. * 3: print header and data from Ethernet of packets. * 4: print header of packets with interface name. * 5: print header and data from IP of packets with interface name. * 6: print header and data from Ethernet of packets with interface name. == Basic Sniffing Command == <nowiki> diag sniffer packet <interface> <'filter'> <verbose> <count>..."
  • 15:0915:09, 21 July 2024 diff hist +2,113 N FORTIGATE - Configuration Dump ScriptCreated page with "Category:Post-It <nowiki> #!/bin/bash # # Usage: ./thisScript.sh {IPv4} {PORT} ##### VARIABLES IP="$1" PORT="$2" MESSAGE="Usage: $0 {IPv4} {PORT}" ##### FUNTIONS is_valid_ipv4() { local -a octets=( ${1//\./ } ) local RETURNVALUE=0 # return an error if the IP doesn't have exactly 4 octets [[ ${#octets[@]} -ne 4 ]] && return 1 # return an error if first octet is 0 [[ ${octets[0]} -eq 0 ]] && return 1 for octet in ${octets[..." current
  • 15:0815:08, 21 July 2024 diff hist +22 FORTIGATE - Base CommandsNo edit summary current
  • 15:0715:07, 21 July 2024 diff hist −4 FORTIGATE - Base CommandsNo edit summary
  • 15:0715:07, 21 July 2024 diff hist +1,308 N FORTIGATE - Base CommandsCreated page with " == Show CPU information == <nowiki> diagnose hardware sysinfo cpu</nowiki> == Show Processes === <nowiki> diagnose sys top {s} {n} {i}</nowiki> Show a list of the first n processes every s seconds for i iterations. * Shift +C: Sort by highest CPU * Shift + M: Sort by highest memory</nowiki> == Show Interfaces == <nowiki> get system interface get system interface physical</nowiki> == Show Interface Details == <nowiki> diagnose hardware deviceinfo n..."

9 June 2024

8 June 2024

(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)