User contributions for Admin
From IT-Arts.net
17 January 2026
- 06:2206:22, 17 January 2026 diff hist +79 m ARUBA - Port-Access Text replacement - "Category:Wiki" to "Category:Wiki '''''[https://it-arts.net/index.php/Category:Wiki Return to Wiki Index]''''' " current
- 06:2206:22, 17 January 2026 diff hist +79 m NGINX - Reverse Proxy Text replacement - "Category:Wiki" to "Category:Wiki '''''[https://it-arts.net/index.php/Category:Wiki Return to Wiki Index]''''' " current
- 06:2206:22, 17 January 2026 diff hist +79 m DEBIAN - Post-Install Script GIMP Text replacement - "Category:Wiki" to "Category:Wiki '''''[https://it-arts.net/index.php/Category:Wiki Return to Wiki Index]''''' " current
- 06:2106:21, 17 January 2026 diff hist +79 m LACP - Aggregation Mode Comparison Text replacement - "Category:Wiki" to "Category:Wiki '''''[https://it-arts.net/index.php/Category:Wiki Return to Wiki Index]''''' " current
- 06:2106:21, 17 January 2026 diff hist +79 m QEMU - Documentation Text replacement - "Category:Wiki" to "Category:Wiki '''''[https://it-arts.net/index.php/Category:Wiki Return to Wiki Index]''''' " current
- 06:2106:21, 17 January 2026 diff hist +79 m FAIL2BAN - Filter.d - http-suspicious Text replacement - "Category:Wiki" to "Category:Wiki '''''[https://it-arts.net/index.php/Category:Wiki Return to Wiki Index]''''' " current
- 06:2006:20, 17 January 2026 diff hist +79 m FAIL2BAN - Filter.d - http-command-inj Text replacement - "Category:Wiki" to "Category:Wiki '''''[https://it-arts.net/index.php/Category:Wiki Return to Wiki Index]''''' " current
- 06:2006:20, 17 January 2026 diff hist +79 m POE - Documentation Text replacement - "Category:Wiki" to "Category:Wiki '''''[https://it-arts.net/index.php/Category:Wiki Return to Wiki Index]''''' " current
- 06:2006:20, 17 January 2026 diff hist +79 m FAIL2BAN - Filter.d - http-nextcloud Text replacement - "Category:Wiki" to "Category:Wiki '''''[https://it-arts.net/index.php/Category:Wiki Return to Wiki Index]''''' " current
- 06:1906:19, 17 January 2026 diff hist +79 m DEBIAN - Post-Install Script WINE Text replacement - "Category:Wiki" to "Category:Wiki '''''[https://it-arts.net/index.php/Category:Wiki Return to Wiki Index]''''' " current
- 06:1906:19, 17 January 2026 diff hist +79 m IP - Base Documentation Text replacement - "Category:Wiki" to "Category:Wiki '''''[https://it-arts.net/index.php/Category:Wiki Return to Wiki Index]''''' " current
- 06:1806:18, 17 January 2026 diff hist +79 m FORTIGATE - Diagnose Debug HA Text replacement - "Category:Wiki" to "Category:Wiki '''''[https://it-arts.net/index.php/Category:Wiki Return to Wiki Index]''''' " current
- 06:1806:18, 17 January 2026 diff hist +79 m FORTIGATE - Packet Sniffer Text replacement - "Category:Wiki" to "Category:Wiki '''''[https://it-arts.net/index.php/Category:Wiki Return to Wiki Index]''''' " current
- 06:1706:17, 17 January 2026 diff hist −78 ACIDBASE - Install With SNORT Setup On Ubuntu 24.4 No edit summary Tag: Reverted
16 January 2026
- 16:3216:32, 16 January 2026 diff hist +53 ACIDBASE - Install With SNORT Setup On Ubuntu 24.4 No edit summary
- 16:3116:31, 16 January 2026 diff hist +1 ACIDBASE - Install With SNORT Setup On Ubuntu 24.4 No edit summary
- 16:3116:31, 16 January 2026 diff hist +23 ACIDBASE - Install With SNORT Setup On Ubuntu 24.4 No edit summary
- 16:2916:29, 16 January 2026 diff hist +7 ACIDBASE - Install With SNORT Setup On Ubuntu 24.4 No edit summary
- 16:2516:25, 16 January 2026 diff hist −2 ACIDBASE - Install With SNORT Setup On Ubuntu 24.4 No edit summary
- 16:2516:25, 16 January 2026 diff hist +36 ACIDBASE - Install With SNORT Setup On Ubuntu 24.4 No edit summary
- 16:2416:24, 16 January 2026 diff hist +2 ACIDBASE - Install With SNORT Setup On Ubuntu 24.4 No edit summary
- 16:2316:23, 16 January 2026 diff hist +42 ACIDBASE - Install With SNORT Setup On Ubuntu 24.4 No edit summary
15 January 2026
- 18:1118:11, 15 January 2026 diff hist −85 FORTIGATE - diag sys ha reset-uptime No edit summary
- 18:1018:10, 15 January 2026 diff hist +1,790 N FORTIGATE - diag sys ha reset-uptime Created page with "Category:Wiki == Command syntax == <nowiki> diag sys ha reset-uptime</nowiki> No arguments or parameters are supported. == Required privileges == * Super-admin (profile with full diagnostic access) * Console or SSH access == Examples == === Reset HA uptime === <nowiki> diag sys ha reset-uptime</nowiki> === Verify HA uptime reset === Before reset: <nowiki> get system ha status</nowiki> Output excerpt: <nowiki> HA Health Status: OK HA Uptime: 5 days, 3 hours..."
12 January 2026
- 20:2520:25, 12 January 2026 diff hist +7,648 N DIFF - Basic Documentation Created page with "Category:Wiki == Common diff Command Use Cases == === Compare Two Files Line by Line === To compare two files and show the differences between them: <nowiki> diff file1.txt file2.txt</nowiki> This command compares `file1.txt` and `file2.txt` line by line, displaying the differences in a unified format by default. === Show Differences Side by Side === To display the differences between two files side by side: <nowiki> diff -y file1.txt file2.txt</nowiki> The..."
- 20:1720:17, 12 January 2026 diff hist +5,832 N XZ - Documentation Created page with "Category:Wiki == Common xz Command Use Cases == === Compress a Single File === To compress a single file using the `xz` command: <nowiki> xz filename.txt</nowiki> This command will compress `filename.txt` and replace it with `filename.txt.xz`. By default, `xz` removes the original file after compression. === Compress a File but Keep the Original File === To compress a file while keeping the original file: <nowiki> xz -k filename.txt</nowiki> The `-k` option..."
- 20:1420:14, 12 January 2026 diff hist +5,482 N WATCH - Command Examples Created page with "Category:Wiki == Common watch Command Use Cases == === Monitor Command Output at Regular Intervals === To run a command at regular intervals (default: every 2 seconds) and display the output: <nowiki> watch df -h</nowiki> This command runs `df -h` every 2 seconds, showing disk usage in human-readable format. === Monitor a Specific File for Changes === To monitor a file for changes, such as its content or size: <nowiki> watch ls -l /var/log/syslog</nowiki> Th..."
- 20:1020:10, 12 January 2026 diff hist −314 SNORT - Base Documentation No edit summary
- 20:0920:09, 12 January 2026 diff hist +7,757 N SNORT - Base Documentation Created page with "Category:Wiki == Snort Command on Linux == Snort is an open-source Network Intrusion Detection and Prevention System (IDS/IPS) capable of real-time traffic analysis and packet logging. It is widely used to monitor network traffic and identify potential security threats by comparing packets against a predefined set of rules. == Common Snort Command Use Cases == === Start Snort in Packet Logging Mode === To run Snort in packet logging mode, where Snort logs all pac..."
- 20:0620:06, 12 January 2026 diff hist −310 IP - Base Documentation No edit summary
- 20:0620:06, 12 January 2026 diff hist +8,079 N IP - Base Documentation Created page with "Category:Wiki == IP Command in Linux == The `ip` command is a powerful and versatile utility for managing network interfaces, routes, and addresses in Linux systems. It is part of the `iproute2` package and provides functionality for configuring network devices, managing IP addresses, and troubleshooting network issues. == Common IP Command Use Cases == === Show All Network Interfaces === To list all network interfaces on the system, including their status (up/do..."
- 19:5919:59, 12 January 2026 diff hist −1 MTR - Formated Command No edit summary
- 19:5819:58, 12 January 2026 diff hist −93 MTR - Formated Command No edit summary
- 19:5619:56, 12 January 2026 diff hist +1,667 MTR - Formated Command No edit summary
- 19:5419:54, 12 January 2026 diff hist −468 MTR - Base Documentation No edit summary
- 19:5419:54, 12 January 2026 diff hist +7,620 N MTR - Base Documentation Created page with "Category:Wiki == MTR Command in Linux == MTR (My Traceroute) is a network diagnostic tool that combines the functionality of `ping` and `traceroute`. It is used to trace the route packets take to a destination, while providing real-time statistics on packet loss and latency. MTR continuously sends packets to each hop along the route to a destination and updates the display with live statistics, which makes it a more dynamic alternative to the traditional `tracerout..."
- 19:4719:47, 12 January 2026 diff hist +1 NETSTAT - Examples No edit summary
- 19:4519:45, 12 January 2026 diff hist +5,666 N NETSTAT - Examples Created page with "Category:Wiki == Common Netstat Commands == === Display All Network Connections === To display all network connections, including listening ports and established connections: <nowiki> netstat -a </nowiki> This command shows all sockets (TCP, UDP, etc.), including listening and non-listening ones. === Show Listening Ports === To display only the listening ports: <nowiki> netstat -l </nowiki> This command shows only the ports that are actively listening for inco..."
- 19:3919:39, 12 January 2026 diff hist +20 VBOXMANAGE - Converting Images No edit summary
- 19:3819:38, 12 January 2026 diff hist +5,837 N VBOXMANAGE - Converting Images Created page with "Category:Wiki == Convert VirtualBox Disk Images == === Convert VDI to VMDK === To convert a VirtualBox Disk Image (VDI) to a VMware Disk (VMDK), use the following command: <nowiki> VBoxManage clonehd "/path/to/source.vdi" "/path/to/destination.vmdk" --format VMDK </nowiki> Example: <nowiki> VBoxManage clonehd "/home/user/vms/LinuxVM.vdi" "/home/user/vms/LinuxVM.vmdk" --format VMDK </nowiki> This command will create a new VMDK file from the source VDI image. ===..."
- 19:3519:35, 12 January 2026 diff hist +5,940 N VBOXMANAGE - Base Guide Created page with "Category:Wiki == VM Management == === Create a Virtual Machine === To create a new virtual machine from scratch: <nowiki> VBoxManage createvm --name "MyVM" --register </nowiki> Example for adding a VM with specific settings: <nowiki> VBoxManage createvm --name "LinuxVM" --ostype "Linux_64" --register VBoxManage modifyvm "LinuxVM" --memory 2048 --cpus 2 --nic1 nat </nowiki> === Modify Virtual Machine === You can modify various properties of a VM, such as memory, C..."
- 19:2919:29, 12 January 2026 diff hist 0 PFSENSE - PFCTL Basic Usage No edit summary
- 19:2819:28, 12 January 2026 diff hist −2 PFSENSE - PFCTL Basic Usage No edit summary
- 19:2819:28, 12 January 2026 diff hist −1,828 PFSENSE - PFCTL Basic Usage No edit summary
6 January 2026
- 17:4817:48, 6 January 2026 diff hist +90 Main Page No edit summary
- 17:4517:45, 6 January 2026 diff hist +72,328 N ETHTOOL - Manpage Created page with "Category:Wiki == ethtool --help == <nowiki> ethtool version 6.15 Usage: ethtool [ FLAGS ] DEVNAME Display standard information about device ethtool [ FLAGS ] -s|--change DEVNAME Change generic options [ speed %d ] [ lanes %d ] [ duplex half|full ] [ port tp|aui|bnc|mii|fibre|da ] [ mdix auto|on|off ] [ autoneg on|off ] [ advertise %x[/%x] | mode on|off ... [--] ] [ phyad %d ] [ xcvr internal|external ] [ wol %d[/%d] | p|u|m|b..."
- 17:4217:42, 6 January 2026 diff hist +7 ETHTOOL - Base Documentation No edit summary
- 17:4117:41, 6 January 2026 diff hist +5,636 N ETHTOOL - Base Documentation Created page with "Category:Wiki == Common Commands == === Display Information === To display detailed information about a network interface: <nowiki> ethtool eth0</nowiki> This command outputs various statistics and properties such as speed, duplex mode, supported features, and driver information. === Display Driver Information === To display the driver details for a specific interface: <nowiki> ethtool -i eth0</nowiki> This provides the driver version, firmware version, and su..."
- 17:2517:25, 6 January 2026 diff hist −84 ACIDBASE - Install With SNORT Setup On Ubuntu 24.4 No edit summary Tag: Manual revert
- 17:2417:24, 6 January 2026 diff hist +2 ACIDBASE - Install With SNORT Setup On Ubuntu 24.4 No edit summary Tag: Reverted
