Tutorial: CI/CD for Azure using Terraform, Ansible and VSTS

https://open.microsoft.com/2018/05/22/cicd-azure-terraform-ansible-vsts-java-springboot-app/

How to add a new RDP listening port

If you need to add another listening port for your RDP server, for whatever the reason, this howto will show youhow to do it.
Please notice we need to edit the registry, so it always best to BACKUP the REGISTRY before you doing any edit on it.

We need to create a new RDP listening port within the registry:

1 – Run Regedit.exe on your Server.

2 – Navigate to the following key:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp

3 – Export the entire key to a .REG file by selecting the key “click on it” and going to File – Export.

4 – Give it any name you like (name not important, any name will do).

5 – Edit the .REG file you’ve just created
(Do not double click on the .REG file, instead right click it and choose Edit)
and change the name of the key at the 3rd line of the file to something like:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp-New

6 – Then Find: PortNumber

and change it to whatever port you want. Make sure you write it in hexadecimal format. For example,
for 3390 you must enter D3E (use calculator in scientific mode to easily convert decimal to hexadecimal format).

7 – Import the .REG file back to the registry by double clicking on it, and we are done.

To connect to the Server from the client:

1 – Go to the Start menu and click on Run.
2 – On the Run menu type MSTSC and click Enter.
3 – In the RDP window, in the Computer box, scroll to the computer name or IP to which you wish to connect.

Code Snippet

Add a “:Port” (without the quotes) where “Port” is the decimal value of the destination port.

Another method of connecting to a different port that default is to run the MSTSC command
with the required command line parameters:

Code Snippet

/v:ServerName[:Port]

For example: MSTSC /v:192.168.1.2:3399 (example port)

NOTE: You have to enable (Allow) the port in the firewall of the client operating system

This was originally posted here: https://social.microsoft.com/Forums/en-US/4e7bd341-38d9-42b6-9265-c6952dc3cdc3/add-a-new-rdp-listening-port-howto

The Surprising Way Gentle Yoga Poses Can Help You Lose Serious Weight

https://prevention.com/weight-loss/a20458255/the-surprising-way-gentle-yoga-can-help-you-lose-serious-weight/

Flash ASUS TM-AC1900 to RT-AC68U

This information was taken from https://slickdeals.net/f/11788767-t-mobile-wi-fi-cellspot-router-60-free-shipping?src=SiteSearchV2_SearchBarV2Algo1

Use at your own risk.

You can flash this router to an RT-AC68U: http://www.bayareatechpros.com/ac1900-to-ac68u/. There are few change/additions needed in the guide before the latest ASUS firmware can be flashed, though.

Flashing TM-AC1900 to RT-AC68U

  • Avoid CFE 1.0.2.5 from the RT-AC68P, as the newest Asus firmwares (3.0.0.4.384.20624 and later) detect this on the TM-AC1900 and revert the mod. Instead, use CFE 1.0.2.0 US AiMesh; it was dumped from an actual RT-AC68U by user goggles99 at SNB. The CFE generator [pipeline.sh] by danielfenghas this version available.
  • Some TM-AC1900 ship with a firmware version that allows SSH access. If you get one of these, you can skip steps 5-10 of the guide. To check if you have SSH available, go to Administration > System in the router configuration interface. If your firmware permits SSH, there will be a setting to Enable SSH. If so, choose Yes, then Apply. Move on to step 11.
  • The T-Mobile certificates have to be wiped from the mtd5 partition. This can be done after all of the steps in the guide have been completed, but must be done before any newer version of ASUS firmware is flashed. As of this writing, the firmware included in the bayareatechpros guide is 3.0.0.4.376.3626, so the steps below should be performed when this version is running on your router.

Wiping T-Mobile certificates from the mtd5 partition

These instructions originally existed on SNB before that forum thread was shut down [snbforums.com]. Credit to XVortex and rdallen. After you’ve performed these steps, you can flash 3.0.0.4.384.21045 (and possibly newer) using the GUI.

Code:
# Backup MTD5 (dd produces identical bin)
cat /dev/mtd5 > /jffs/mtd5_backup.bin

# Copy mtd5_backup.bin from router using scp
# From host: scp admin@192.168.1.1:/jffs/mtd5_backup.bin ./

# Mount MTD5
mkdir /tmp/asus_jffs
mount -t jffs2 /dev/mtdblock5 /tmp/asus_jffs

# Copy mtd5 files from router using scp
# From host: scp admin@192.168.1.1:/tmp/asus_jffs/* ./

# Wipe mtd5 files and reboot
rm -rf /tmp/asus_jffs/*
sync && umount /tmp/asus_jffs
rm -rf /jffs/.sys/RT-AC68U
nvram unset fw_check && nvram commit && reboot

—–

ASUS RT-AC68U firmware downloads [asus.com]

SNB now disallows discussion [snbforums.com] about converting TM-AC1900 to RT-AC68U with AiMesh. So, modding information may be a bit harder to come by going forward. Some discussion has moved to this thread [whirlpool.net.au] on whirlpool.

Other Tips:

If you are having problems accessing the mini-CFE webserver this works:

  1. Power off the router using the power button
  2. Set your PC’s IP to 192.168.29.2 (assuming the recovery mode is gateway is 192.168.29.1)
  3. Navigate to 192.168.29.1 using your browser — the browser continue to try and access the page until it is available
  4. Press and hold the reset button while powering-on the router
  5. When the mini-CFE webpage appears on the browser, release the reset button
  6. As long as the browser status is still spinning — looking for a webpage — the mini CFE web page will load