System Setup

How to Use Trac Calink

How to Use Trac Calink

1. Test URL via Web Browser

Open a web browser (e.g., Chrome, Firefox).

Type the following URL in the address bar and press Enter:

http://10.117.12.1:8088/

This will connect you to the Trac Calink web interface, assuming the server is running and accessible.

2. Check Route

To check the network route to the desired IP address (for example, 10.117.12.0), you need to ensure that the route is correctly set up on your computer.

2.1 Print Route

Open the Command Prompt (search for cmd in the Start menu and select it).

To display the current network routes, type the following command and press Enter:

route print

This will display the current routing table, which you can check for the correct route to 10.117.12.0.

2.2 Add Route

If you need to manually add a route, use the route command in the Command Prompt. For example, to add a route for the network 10.117.12.0 with a subnet mask of 255.255.255.0 and a gateway of 192.168.0.2, use the following command:

route -p add 10.117.12.0 mask 255.255.255.0 192.168.0.2 metric 1

-p makes the route persistent (it stays even after a reboot).
10.117.12.0 is the network you are routing to.
255.255.255.0 is the subnet mask.
192.168.0.2 is the gateway IP to route the traffic through.
metric 1 sets the route's metric (priority).

3. Ensure DLLs Are Unblocked via PowerShell

If you have DLL files that are blocked (e.g., downloaded from the internet), you’ll need to unblock them before use.

3.1 Unblock DLL Files

To unblock DLL files using PowerShell:

  • Open PowerShell as Administrator (search for PowerShell, right-click, and select "Run as Administrator").
  • To unblock a specific DLL file, use the following command:
Unblock-File -Path "C:\Path\To\Your\File.dll"

Replace C:\Path\To\Your\File.dll with the actual path to your DLL file.

  • If you want to unblock multiple files in a folder, you can run:
Get-ChildItem "C:\Path\To\Your\Folder" -Filter *.dll | Unblock-File

This will ensure that the DLL files are unblocked and ready for use in your system.

That's it!

These steps should guide you through testing the Trac Calink URL, checking and adding routes, and ensuring DLLs are unblocked for proper functionality.

Developer: Andy Given