User contributions for Admin
From Wiki.IT-Arts.net
3 August 2024
- 14:3514:35, 3 August 2024 diff hist +2 ALCATEL - Show Interface Tranceiver No edit summary
- 14:3414:34, 3 August 2024 diff hist −7 ALCATEL - Show Interface Tranceiver No edit summary
- 14:2514:25, 3 August 2024 diff hist +542 N PALO-ALTO - Base Commands Created 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.sh Created 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 Examples Created 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 Omniswitch Created 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.sh Created 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 Tranceiver Created 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 - Manpage No edit summary current
- 14:1714:17, 3 August 2024 diff hist +6,490 N OPENCONNECT - Manpage Created 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 CheatSheet Created 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 Sniffer Created 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 Script Created 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 Commands No edit summary current
- 15:0715:07, 21 July 2024 diff hist −4 FORTIGATE - Base Commands No edit summary
- 15:0715:07, 21 July 2024 diff hist +1,308 N FORTIGATE - Base Commands Created 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
- 13:2213:22, 9 June 2024 diff hist +7 KBD MODE - Manpage No edit summary current
- 13:2113:21, 9 June 2024 diff hist +110,424 N SYSTEMCTL - Manpage Created page with "Category:Post-It == systemctl --help == <nowiki> systemctl [OPTIONS...] COMMAND ... Query or send control commands to the system manager. Unit Commands: list-units [PATTERN...] List units currently in memory list-automounts [PATTERN...] List automount units currently in memory, ordered by path list-sockets [PATTERN...] List socket units currently in memory,..." current
- 13:1713:17, 9 June 2024 diff hist +8,012 N DD - Manpage Created page with "Category:Post-It == dd --help == <nowiki> Usage: dd [OPERAND]... or: dd OPTION Copy a file, converting and formatting according to the operands. bs=BYTES read and write up to BYTES bytes at a time (default: 512); overrides ibs and obs cbs=BYTES convert BYTES bytes at a time conv=CONVS convert the file as per the comma separated symbol list count=N copy only N input blocks ibs=BYTES read up to BYTES..." current
- 13:1013:10, 9 June 2024 diff hist +9,803 N IP - Manpage Created page with "Category:Post-It == ip --help == <nowiki> Usage: ip [ OPTIONS ] OBJECT { COMMAND | help } ip [ -force ] -batch filename where OBJECT := { address | addrlabel | amt | fou | help | ila | ioam | l2tp | link | macsec | maddress | monitor | mptcp | mroute | mrule | neighbor | neighbour | netconf | netns | nexthop | ntable | ntbl | route | rule | sr | tap | tcpmetrics | token | tunnel..." current
- 13:0813:08, 9 June 2024 diff hist +1 TFTP - Manpage No edit summary current
- 13:0713:07, 9 June 2024 diff hist +5,135 N TFTP - Manpage Created page with "Category:Post-It == ftp --help == <nowiki> Usage: tftp [-4][-6][-v][-l][-m mode] [host [port]] [-c command]</nowiki> == Manpage == <nowiki> TFTP(1) User's Manual TFTP(1) NAME tftp - IPv4 Trivial File Transfer Protocol client SYNOPSIS tftp [ options... ] [host [port]] [..."
- 13:0513:05, 9 June 2024 diff hist +53,510 N FTP - Manpage Created page with "Category:Post-It == ftp --help == <nowiki> ftp: invalid option -- '-' usage: ftp [-46AadefginpRtVv] [-N NETRC] [-o OUTPUT] [-P PORT] [-q QUITTIME] [-r RETRY] [-s SRCADDR] [-T DIR,MAX[,INC]] [-x XFERSIZE] [[USER@]HOST [PORT]] [[USER@]HOST:[PATH][/]] [file:///PATH] [ftp://[USER[:PASSWORD]@]HOST[:PORT]/PATH[/][;type=TYPE]] [http://[USER[:PASSWORD]@]HOST[:PORT]/PATH] [https://[USER[:PASSWOR..." current
- 12:5812:58, 9 June 2024 diff hist +7 Category:Post-It No edit summary current
- 12:5812:58, 9 June 2024 diff hist +7 Category:Post-It No edit summary
- 12:5712:57, 9 June 2024 diff hist 0 Category:Post-It No edit summary
- 12:5712:57, 9 June 2024 diff hist +6 Category:Post-It No edit summary
- 12:5712:57, 9 June 2024 diff hist +2 Category:Post-It No edit summary
- 10:2910:29, 9 June 2024 diff hist +339 ESXI - Base Commands No edit summary current
- 10:2210:22, 9 June 2024 diff hist +268 ESXI - Base Commands No edit summary
- 10:1910:19, 9 June 2024 diff hist +62 ESXI - Base Commands No edit summary
- 10:1610:16, 9 June 2024 diff hist +253 ESXI - Base Commands No edit summary
- 10:1210:12, 9 June 2024 diff hist −6 FIND - Exec No edit summary current
- 10:1110:11, 9 June 2024 diff hist 0 FIND - Exec No edit summary
- 10:1110:11, 9 June 2024 diff hist +280 FIND - Exec No edit summary
- 10:0910:09, 9 June 2024 diff hist 0 FIND - Exec No edit summary
- 10:0810:08, 9 June 2024 diff hist +454 FIND - Exec No edit summary
- 10:0510:05, 9 June 2024 diff hist +694 N FIND - Exec Created page with "Category:Post-It == grep --help == The basic syntax to execute find with exec : <nowiki> find [path] [arguments] -exec [command] {} \;</nowiki> === List Files === <nowiki> find /home/user/ -type f -name *.txt -exec ls -l {} \;</nowiki> === Remove By Size === Files larger than 500 MB : <nowiki> find /home/user/ -size +500M -exec rm {} \;</nowiki> === Remove By Date === Files older than 10 days <nowiki> find /home/user/ -type f -mtime +10 -exec r..."
- 09:5609:56, 9 June 2024 diff hist +83,283 N FIND - Manpage Created page with "Category:Post-It == find --help == <nowiki> Usage: find [-H] [-L] [-P] [-Olevel] [-D debugopts] [path...] [expression] Default path is the current directory; default expression is -print. Expression may consist of: operators, options, tests, and actions. Operators (decreasing precedence; -and is implicit where no others are given): ( EXPR ) ! EXPR -not EXPR EXPR1 -a EXPR2 EXPR1 -and EXPR2 EXPR1 -o EXPR2 EXPR1 -or EXPR2 EXPR1 , EXPR2 Po..." current
8 June 2024
- 19:1719:17, 8 June 2024 diff hist +11 Category:Post-It No edit summary
- 19:1719:17, 8 June 2024 diff hist +20 Category:Post-It No edit summary
- 19:1619:16, 8 June 2024 diff hist +488 Category:Post-It No edit summary
- 19:1419:14, 8 June 2024 diff hist +41 Category:Post-It No edit summary
- 19:1119:11, 8 June 2024 diff hist +4,098 GREP - Manpage No edit summary
- 19:0919:09, 8 June 2024 diff hist −6 Wiki.IT-Arts.net:About No edit summary current
- 19:0719:07, 8 June 2024 diff hist +4,424 N SRM - Manpage Created page with "Category:Post-It == srm --help == <nowiki> srm v3.1 (c) 1997-2003 by van Hauser / THC <vh@thc.org> Syntax: srm [-dflrvz] file1 file2 etc. Options: -d ignore the two dot special files "." and "..". -f fast (and insecure mode): no /dev/urandom, no synchronize mode. -l lessens the security (use twice for total insecure mode). -r recursive mode, deletes all subdirectories. -v is verbose mode. -z last wipe writes zeros instead of random data. srm does..." current
- 19:0419:04, 8 June 2024 diff hist +1,893 SED - Manpage No edit summary current
- 19:0019:00, 8 June 2024 diff hist +19,720 N MTR - Manpage Created page with "Category:Post-It == mtr --help == <nowiki> Usage: mtr [options] hostname -F, --filename FILE read hostname(s) from a file -4 use IPv4 only -6 use IPv6 only -u, --udp use UDP instead of ICMP echo -T, --tcp use TCP instead of ICMP echo -I, --interface NAME use named network interface -a, --address ADDRESS bind the outgoing socket to ADDRESS -f, --first-ttl..." current
- 18:5918:59, 8 June 2024 diff hist −12 NMAP - Manpage No edit summary current
- 18:5918:59, 8 June 2024 diff hist +6,064 NMAP - Manpage No edit summary