mirror of
https://github.com/wifinigel/MikrotikScripting.git
synced 2025-07-10 01:54:30 +02:00
update for v6/v7 support
This commit is contained in:
parent
4871e9432b
commit
b10b99bd87
120 changed files with 1479 additions and 22 deletions
|
@ -1,18 +0,0 @@
|
|||
# filename: ch8-04-foreach-web.rsc
|
||||
|
||||
# define an array of web sites
|
||||
:local WebSites {"mikrotik.com"; "google.com"; "twitter.com"};
|
||||
|
||||
# use a foreach loop to check if each site is reachable
|
||||
:foreach Site in=$WebSites do={
|
||||
|
||||
:put "Pinging web site: $Site";
|
||||
|
||||
:local PingResult [/ping $Site count=3 ];
|
||||
|
||||
:if ($PingResult > 0) do {
|
||||
:put ("\nWeb site $Site reached OK\n");
|
||||
} else={
|
||||
:put ("\nNo response from web site: $Site\n");
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue