-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprogram.ps1
More file actions
28 lines (23 loc) · 983 Bytes
/
program.ps1
File metadata and controls
28 lines (23 loc) · 983 Bytes
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
Write-Host -fore blue @"
__ _ __ __
____ _ _______/ /_ ____ (_)___ ____ ______/ /_____ ______/ /__
/ __ \ | /| / / ___/ __ \/ __ \/ / __ \/ __ `/ ___/ __/ __ `/ ___/ //_/
/ /_/ / |/ |/ (__ ) / / / /_/ / / / / / /_/ (__ ) /_/ /_/ / /__/ ,<
/ .___/|__/|__/____/_/ /_/ .___/_/_/ /_/\__, /____/\__/\__,_/\___/_/|_|
/_/ /_/ /____/
Creator: hacker41d4n
"@
Write-Host -fore yellow "Main Network Card Test"
ping 10.70.1.250 -n 10
Write-Host -fore red "Test Completed"
Write-Host -fore yellow "Backup 1 Network Card Test"
ping 10.70.1.251 -n 10
Write-Host -fore red "Test Completed"
Write-Host -fore yellow "Backup 2 Network Card Test"
ping 10.70.1.150 -n 10
Write-Host -fore red "Test Completed"
Write-Host "TEST DONE"
timeout /t 60
## enp4s0 = MAIN
## enp2s0 = Backup 1
## enp4s1 = Backup 2