-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_telkom_access.xml.example
More file actions
37 lines (34 loc) · 1.46 KB
/
_telkom_access.xml.example
File metadata and controls
37 lines (34 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?xml version="1.0" encoding="UTF-8"?>
<!--
TELKOM Network Access Configuration Template
============================================
SECURITY NOTICE:
- This is a TEMPLATE file. DO NOT commit the actual _telkom_access.xml
- Copy this file to _telkom_access.xml and fill in your actual credentials
- The _telkom_access.xml file is automatically ignored by git
SETUP INSTRUCTIONS:
1. Copy this file: cp _telkom_access.xml.example _telkom_access.xml
2. Edit _telkom_access.xml with your actual credentials
3. Ensure file permissions are restricted: chmod 600 _telkom_access.xml (Linux/Mac)
CONFIGURATION DETAILS:
- tacacs-server: IP addresses of TACACS+ authentication servers
- tacacs-user/pass: Credentials for TACACS+ authentication
- router-user/pass: Credentials for router/switch access
-->
<telkom-access>
<tacacs-list>
<!-- Add your TACACS+ server IP addresses here -->
<tacacs-server>10.x.x.x</tacacs-server>
<tacacs-server>10.x.x.x</tacacs-server>
</tacacs-list>
<tacacs-access>
<!-- TACACS+ Authentication Credentials -->
<tacacs-user>your-tacacs-username</tacacs-user>
<tacacs-pass>your-tacacs-password</tacacs-pass>
</tacacs-access>
<router-access>
<!-- Router/Network Device Credentials -->
<router-user>your-router-username</router-user>
<router-pass>your-router-password</router-pass>
</router-access>
</telkom-access>