All public logs
Jump to navigation
Jump to search
Combined display of all available logs of plnx.nl. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 09:45, 17 May 2025 Pverha10 talk contribs created page Firefox over X11 with Xming (Created page with "I use the xlaunch files like this: <pre> <?xml version="1.0"?> <XLaunch xmlns="http://www.straightrunning.com/XmingNotes" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.straightrunning.com/XmingNotes XLaunch.xsd" WindowMode="MultiWindow" ClientMode="StartProgram" Program="firefox" ClientStart="PuTTY" PW="password" PathToProtocol="C:\\WINDOWS\\" RemoteHost="host" RemoteUser="username" ExtraSSH="-X" Display="0" Clipboard="true"/> </...")
- 09:44, 17 May 2025 Pverha10 talk contribs created page One liners (Created page with "== sed == Replace all enters with spaces with sed. <pre> sed ':a;N;$!ba;s/\n/ /g' </pre> <br> Replace all uppercase letters with lowercase with sed. <pre> sed -e 's/\(.*\)/\L\1/' </pre> The same with tr <pre> tr '[:upper:]' '[:lower:]' </pre> Get only the dashed mac addresses from a file <pre> grep -o '..-..-..-..-..-..' file </pre> == Powershell == One liner powershell command to uninstall the application 'Linphone'. <pre> C:\windows\system32\WindowsPowerShell\v1.0...")
- 09:44, 17 May 2025 Pverha10 talk contribs created page SSL (Created page with "=Self Signed Certificate= Easiest way to create a self-signed certificate for domain.com: <pre> openssl req -subj "/CN=domain.com" -new -newkey rsa:4096 -days 3650 -nodes -x509 -sha512 -keyout private.key -out public.key </pre> If you want to add more domain names, just add more /CN=example.com between the double quotes. The last common name will be the main common name.<br/> Remember: keep your private.key private. Change rights to the file accordingly so that only th...")
- 09:44, 17 May 2025 Pverha10 talk contribs created page Bonding (Created page with "=linux network interface bonding= I wanted to make the following configuration: <table border=1> <tr><td colspan=4>bond2 (active-backup mode)</td></tr> <tr><td colspan=2>bond0 (802.3ad mode)</td><td colspan=2>bond1 (802.3ad mode)</td></tr> <tr><td>eth0 (in switch 1)</td><td>eth1 (in switch 1)</td><td>eth2 (in switch 2)</td><td>eth3 (in switch 2)</td></tr> </table> So I made the following: <pre> #!/bin/sh # load 3 bonds (in 802.3ad mode) /sbin/modprobe bonding mode=4...")
- 09:43, 17 May 2025 Pverha10 talk contribs created page Windows XP Fixed IPv6 (Created page with "* I have prefix 2001:1af8:fe50::/48 * My router address is 2001:1af8:fe50::f000 From an administrator cmd.exe do: <pre> ipv6 install ipv6 if </pre> Look for your interface number. Let's pretend it's 3. <pre> ipv6 adu 3/2001:1af8:fe50::dead ipv6 rtu ::/0 3/2001:1af8:fe50::f000 </pre>")
- 09:43, 17 May 2025 Pverha10 talk contribs created page 7zip tricks (Created page with "7zip tricks ==7zip from dosbox== To create seperate zip files from the commandline in dos with 7zip the following: <pre> forfiles /M data.* /C "cmd /c 7z a @file.zip @file" </pre> In the following directory: <pre> C:\TEMP>dir Volume Serial Number is 1337-1337 Directory of C:\TEMP 01-01-2001 00:00 <DIR> . 01-01-2001 00:00 <DIR> .. 01-01-2001 07:00 16.384 data.log 01-01-2001 08:00 16.384 data.dat 01-01-2001 09:00...")
- 09:42, 17 May 2025 Pverha10 talk contribs created page BIND IPv6 $GENERATE (Created page with "There is no $GENERATE command available on IPv6, therefore you must specify every forward and reverse entry in bind manually. You could however use the $INCLUDE statement to include a range you have generated with a script. I will post a script here to generate IPv6 forward and reverse files you can include in bind. =generate-forward-ipv6.sh= <pre> #!/bin/sh # generate 250 of these lines: # ip20-042 IN AAAA 2001:dead:beef:14::2a # where 20(0x14) is the vlani...")
- 09:42, 17 May 2025 Pverha10 talk contribs created page VLC Streaming (Created page with "=Streaming with VLC from the command line= ==Logitech C910== I've tried the Logitech C910, but it won't focus to infinity without an extra lens. ==Logitech C920== The Logitech C920 still doesn't focus fully to infinity, but the picture is clear enough. I have streamed to a site-local multicast address with transcoding, because the C920 gives a standard image format of yuy2, which isn't stream-able in a transport stream. <pre> cvlc -vvvv --v4l2-width=1920 --v4l2-height...")
- 09:41, 17 May 2025 Pverha10 talk contribs created page Sendmail Config Authenticated SMTP (Created page with "I made the following configuration: * Sendmail SMTP (listening on port 25 and SSL port 465)<br> * Authentication through cyrus-sasl2 (listening on socket /var/state/saslauthd/mux)<br> * Authentication through pam (with the pam_radius module)<br> * Authentication with FreeRadius (for now in the users file)<br> So for this configuration to work you need FreeRadius, pam_radius, Linux-PAM, cyrus-sasl2 and sendmail. N.B.: I did this in my favourite distro Slackware. (13.3...")
- 09:41, 17 May 2025 Pverha10 talk contribs created page Sendmail Config Antispam (Created page with "=Don't allow domain hijack= The following configuration part is a replacement for the check_mail ruleSet. It can check whether the domains from LocalDomains within the from-addresses being offered to sendmail are coming from the IP-addresses/ranges that are defined in LocalIP. Please make sure the space in between the left-hand-side and the right-hand-side of the configuration are seperated by tabs. <pre> F{LocalDomains} /etc/mail/LocalDomains F{LocalIP} /etc/mail/Local...")
- 09:40, 17 May 2025 Pverha10 talk contribs created page Sendmail Config (Created page with "Sendmail Config Antispam<br> Sendmail Config Authenticated SMTP")
- 09:40, 17 May 2025 Pverha10 talk contribs created page TRIM Support (Created page with "=ext4= TRIM support is available on ext4. It is activated by adding discard to the list of mount options. So in /etc/fstab it says something like: <pre> /dev/sdx1 /somewhere ext4 defaults,discard 1 1 </pre> You can also discard the unused blocks manually by using: <pre> fstrim -v /somewhere </pre> The resulting amount of space trimmed may not be the same as the actual space freed on the disk. It is safe to repeat this, for example in...")
- 09:40, 17 May 2025 Pverha10 talk contribs created page NT6.1 Firewall Stealth Mode (Created page with "In Windows NT6.1 (Windows 7, Windows 2008 R2), the default setting for the Windows Firewall is to drop packets for ports no program is listening on. So for example if you would go to http://nt61machine.zaphod.example.com/ and nt61machine isn't listening on tcp/80 it would take the timeout of your tcp stack's timeout for the port to be found unreachable. To disable stealth mode create the following: <pre> DisableStealthMode = DWORD(0x1) </pre> in 1 or more of the followi...")
- 09:39, 17 May 2025 Pverha10 talk contribs created page DNS-DHCP configuration (Created page with "=IPv4= Configuration file for "dhcpd -4 -cf dhcpd.conf.ipv4 eth0" ==dhcpd.conf.ipv4== <pre> # dhcpd.conf.ipv4 ############################## # default options: authoritative; log-facility local7; ddns-update-style interim; option domain-name "local.lan"; lease-file-name "/var/run/dhcpd/dhcpd.leases.ipv4"; default-lease-time 7200; max-lease-time 28800; update-conflict-detection false; ############################## # dynamic dns updates include "/etc/dhcp-dns.key";...")
- 09:38, 17 May 2025 Pverha10 talk contribs created page Rescan scsi (Created page with "To rescan your scsi disks (to look if a disk has been added) you can reread your scsi device by giving the following command: <pre> echo "- - -" >/sys/class/scsi_host/host0/scan </pre> It's very handy if you added a disk in VMware, don't want to reboot and have no flashy thingy disk-tools. If you added space to your first disk you need to rescan your disk with: <pre> echo 1 > /sys/block/sda/device/rescan </pre> If you resized your disk with fdisk for example, but th...")
- 09:38, 17 May 2025 Pverha10 talk contribs created page Sip configuration plnx.nl (Created page with "in /etc/asterisk/ there are 4 files: codecs.conf, extensions.conf, modules.conf and sip.conf. ==codecs.conf== <pre> [speex] quality => 3 complexity => 2 enhancement => true vad => true vbr => true abr => 0 vbr_quality => 4 dtx => false preprocess => true pp_vad => true pp_agc => false pp_agc_level => 8000 pp_denoise => false pp_dereverb => false pp_dereverb_decay => 0.4 pp_dereverb_level => 0.3 [plc] genericplc => true </pre> ==extensions.conf== <pre> [general] [globals...")
- 09:38, 17 May 2025 Pverha10 talk contribs created page C2960x commands (Created page with "I had to do some debugging work with c2960x stacks.<br> It appeared the flexstack+ cable was broken.<br> I found out with the following command:<br> <pre>remote command all show controllers ethernet-controller stack</pre> And this showed me 'symbol error frames' and 'invalid frames, too large'.")
- 09:37, 17 May 2025 Pverha10 talk contribs created page Cisco core upgrade (Created page with "The manual on how to upgrade a Catalyst 6509e system with sup720-10G supervisor and Virtual switching system(VSS) is located at: http://www.cisco.com/c/en/us/td/docs/switches/lan/catalyst6500/ios/15-2SY/config_guide/sup2T/15_2_sy_swcg_2T/enhanced_fast_software_upgrade_efsu.html For an issu on a stackwise-virtual set of Catalyst 9500 switches see: https://www.cisco.com/c/en/us/td/docs/switches/lan/catalyst9500/software/release/16-10/configuration_guide/ha/b_1610_ha_9500_...")
- 09:37, 17 May 2025 Pverha10 talk contribs created page SIP records (Created page with "The following SIP SRV DNS records have been added to plnx.nl: <pre> _sip._udp.plnx.nl. SRV 0 1 5060 plnx.nl _sips._tcp.plnx.nl. SRV 0 1 5061 plnx.nl </pre>")
- 09:32, 17 May 2025 User account Pverha10 talk contribs was created by Admin talk contribs
- 17:03, 12 May 2025 MediaWiki default talk contribs created page Main Page