New pages

From Wiki.IT-Arts.net
New pages
Hide registered users | Hide bots | Show redirects
  • 06:39, 23 September 2025ZPOOL - Manpage (hist | edit) ‎[17,049 bytes]Admin (talk | contribs) (Created page with "Category:Post-It <nowiki> ZPOOL(8) BSD System Manager's Manual ZPOOL(8) NAME zpool — configure ZFS storage pools SYNOPSIS zpool -?V zpool version zpool subcommand [argumentss] DESCRIPTION The zpool command configures ZFS storage pools. A storage pool...")
  • 06:35, 23 September 2025QM - Manpage (hist | edit) ‎[198,155 bytes]Admin (talk | contribs) (Created page with "Category:Post-It <nowiki> QM(1) Proxmox VE Documentation QM(1) NAME qm - Qemu/KVM Virtual Machine Manager SYNOPSIS qm <COMMAND> [ARGS] [OPTIONS] qm agent An alias for qm guest cmd. qm cleanup <vmid> <clean-shutdown> <guest-requested>...")
  • 06:27, 23 September 2025EXPECT - Show-CONFIGURATION Fortigate.expect.sh (hist | edit) ‎[569 bytes]Admin (talk | contribs) (Created page with "Category:Post-It <nowiki> #!/usr/bin/expect -f # define remote Fortigate device and ssh port with username set host "192.168.1.99" set port "22" set user "admin_ro" spawn ssh "-p $port" "$user\@$host" #comment the line below if the device has no vdoms expect " $ " { send "config global\r" } expect " $ " { send "show full-configuration\r" } ###Exit from device expect " $ " { send "exit\r" }</nowiki> == Useful Links == * https://community.fo...")
  • 06:20, 23 September 2025EXPECT - Show-IP-ROUTE Cisco.expect.sh (hist | edit) ‎[712 bytes]Admin (talk | contribs) (Created page with "Category:Post-It <nowiki> #!/usr/bin/expect -f # # # SET THE OUTPUT TO NON-BUFFERED MODE FOR "PUTS" COMMAND fconfigure stdout -buffering none set timeout 10 set HOST [lindex $argv 0] set IPADDRESSTOCHECK [lindex $argv 1] set USERNAME [lindex $argv 2] set PASSWORD [lindex $argv 3] # SSH CONNEXION spawn ssh $USERNAME@$HOST # spawn ssh -oStrictHostKeyChecking=no -oKexAlgorithms=+diffie-hellman-group1-sha1 -oHostKeyAlgorithms=+ssh-dss -oStrictHostKeyChecking=no...")
  • 06:18, 23 September 2025EXPECT - Manpage (hist | edit) ‎[76,597 bytes]Admin (talk | contribs) (Created page with "Category:Post-It <nowiki> expect(1) - Linux man page Name expect - programmed dialogue with interactive programs, Version 5 Synopsis expect [ -dDinN ] [ -c cmds ] [ [ -[f|b] ] cmdfile ] [ args ] Introduction Expect is a program that "talks" to other interactive programs according to a script. Following the script, Expect knows what can be expected from a program and what the correct response should be. An interpreted language provides branching and high-level contr...")
  • 06:17, 23 September 2025EXPECT - Show-VLAN-ID Cisco.expect.sh (hist | edit) ‎[783 bytes]Admin (talk | contribs) (Created page with "Category:Post-It <nowiki> #!/usr/bin/expect -f # # # SET THE OUTPUT TO NON-BUFFERED MODE FOR "PUTS" COMMAND fconfigure stdout -buffering none set timeout 5 set HOST [lindex $argv 0] set VLAN [lindex $argv 1] set USERNAME [lindex $argv 2] set PASSWORD [lindex $argv 3] # SSH CONNEXION spawn ssh $USERNAME@$HOST # spawn ssh -oStrictHostKeyChecking=no -oKexAlgorithms=+diffie-hellman-group1-sha1 -oHostKeyAlgorithms=+ssh-dss $USERNAME@$HOST expect { "*Are you...")
  • 07:36, 18 September 2025BASH - Bulk Ping IP.sh (hist | edit) ‎[226 bytes]Admin (talk | contribs) (Created page with "Category:Post-It <nowiki> #!/bin/sh # IP LIST TO PING IP=" 8.8.4.4 8.8.8.8" for i in $IP do ping -c 2 $i >/dev/null && echo $i" ".$(host $i)." is UP !" || echo " is dead" sleep 2 done exit 0</nowiki>")
  • 09:38, 21 July 2025FORTIGATE - Session Debug (hist | edit) ‎[1,272 bytes]Admin (talk | contribs) (Created page with "Category:Post-It == Session Analysis Of A Failling Connection == <nowiki> diag sys session stat diag sys session filter src <IP> diag sys session list</nowiki> === diagnose sys session filter ? === vd Index of virtual domain. -1 matches all. vd-name Name of virtual domain. -1 or "any" matches all. sintf Source interface. dintf Destination interface. s...")
  • 08:19, 15 July 2025OPENSSL - Playing With Certificates (hist | edit) ‎[29,480 bytes]Admin (talk | contribs) (Created page with "Category:Post-It == Create a Certificate == === Interactive Mode === <nowiki> openssl req -newkey rsa:4096 -nodes -keyout private_key.pem -sha256 -x509 -days 3650 -out public_certificate.pem</nowiki> === Non-interactive Mode === <nowiki> openssl req -x509 -newkey rsa:4096 -keyout private_key.pem -out public_certificate.pem -sha256 -days 3650 -nodes -subj "/C=XX/ST=StateName/L=CityName/O=CompanyName/OU=CompanySectionName/CN=CommonNameOrHostname" -addext "subj...")
  • 08:07, 9 July 2025SPLUNK - Network Filters (hist | edit) ‎[971 bytes]Admin (talk | contribs) (Created page with "Category:Post-It == Source And Destination IP And Ports == <nowiki> (src_ip=10.20.30.* OR src_ip=10.20.40.*) AND dst_ip=192.168.1.* AND dst_port=443</nowiki>")
  • 09:34, 26 June 2025DIG - Manpage (hist | edit) ‎[30,888 bytes]Admin (talk | contribs) (Created page with "Category:Post-It == Examples == === Use dig to verify DNSSEC record === <nowiki> dig YOUR-DOMAIN-NAME +dnssec +short</nowiki> === Grab the public key used to verify the DNS record === <nowiki> dig DNSKEY YOUR-DOMAIN-NAME +short</nowiki> === Show the DNSSEC chain of trust === <nowiki> dig DS YOUR-DOMAIN-NAME +trace</nowiki> == Manpage == <nowiki> DIG(1)...")