Posts

openvpn

If you want to keep these ports untouched: 22 SSH 25 SMTP 53 DNS 80 HTTP 110 POP3 143 IMAP 443 HTTPS/OpenVPN 587 SMTP Submission 943 OpenVPN Admin 993 IMAPS 995 POP3S and redirect everything else to OpenVPN worker ports (916 TCP, 921 UDP), use: nft flush table ip nat nft add table ip nat nft 'add chain ip nat prerouting { type nat hook prerouting priority dstnat; policy accept; }' # TCP redirect everything except important ports nft 'add rule ip nat prerouting tcp dport != { 22,25,53,80,110,143,443,587,943,993,995 } redirect to 916' # UDP redirect everything except DNS nft 'add rule ip nat prerouting udp dport != { 53 } redirect to 921' Verify: nft list table ip nat Expected: table ip nat { chain prerouting { type nat hook prerouting priority dstnat; policy accept; tcp dport != { 22,25,53,80,110,143,443,587,943,993,995 } redirect to :916 udp dport != { 53 } redirect to :921 } } To monitor whether connections...

the connection was terminated by the remote computer before it could be completed

Image
 the connection was terminated by the remote computer before it could be completed

License limits exceeded directadmin

 License limits exceeded directadmin [root@vmi1626803 app1]# ls -lah /usr/local/directadmin/data/users total 16K drwx--x--x  4 diradmin diradmin 4.0K Jun 11 08:15 . drwx--x--x 10 diradmin diradmin 4.0K Jun 11 08:20 .. drwx--x--x  8 diradmin diradmin 4.0K Jun 11 08:17 admin drwx--x--x  6 diradmin diradmin 4.0K Jun 11 08:17 app

iis not found 404 roaplantranchi.com

Image
  HTTP Error 404. The requested resource is not found.

mail migration cyberpanel to whm exim

cd /home/vmail/korb.co.in/brijesh.surani/Maildir/cur  rsync -avhe 'ssh -p 22' ./* root@66.116.232.235:/home/korbco/mail/korb.co.in/brijesh.surani/cur/ change the user only

comfyui connecting reconnecting isuue when using iis as reverse proxy

Image
  The image reveals a critical piece of information that changes the entire troubleshooting path: You are routing your traffic through Cloudflare ( Server: cloudflare , CF-RAY: ...-SIN ) before it ever hits your local Windows 11 IIS proxy ( X-Powered-By: ARR/3.0 ). [ 1 ] Your browser is sending the WebSocket request with compression enabled ( Sec-WebSocket-Extensions: permessage-deflate ), but IIS ARR 3.0 breaks when proxying compressed WebSockets over a third-party CDN like Cloudflare , leading to the instant connection crash and loop you are seeing. [ 1 ] To completely solve this, you need to strip that specific WebSocket compression extension header so IIS and Cloudflare can talk cleanly. The Fix: Force IIS to Strip WebSocket Compression Extensions You need to use the URL Rewrite module on your Windows 11 IIS site to forcibly clear the HTTP_SEC_WEBSOCKET_EXTENSIONS variable. [ 1 ] Step 1: Allow Server Variable Overrides in IIS Open IIS Manager . Click your main Windows 11 Se...

0x800F0922 when trying to enable iis

Internet  information services hostable web core was enabled causing the issue Also check this Because IIS Hostable Web Core is enabled in your screenshot, run: DISM /Online /Disable-Feature /FeatureName:IIS-HostableWebCore Reboot, then: DISM /Online /Enable-Feature /FeatureName:IIS-WebServerRole /All The combination of a partially enabled IIS component and failed deployment packages is a common cause of 0x800F0922.