tcode tidy & correct image names

This commit is contained in:
Wifinigel 2023-02-26 14:05:58 +00:00
parent f3beb2ed9b
commit 4548f7c5c1
55 changed files with 18 additions and 18 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 264 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 91 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 89 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 148 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 101 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 145 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 135 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 111 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 67 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 194 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 107 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 108 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 116 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 142 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 69 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

View file

@ -3,7 +3,7 @@
:local w {"mikrotik.com"; "www.google.com"; "twitter.com"};
:foreach s in=$w do={
:local i [/resolve $s];
:local i [:resolve $s];
:local p [/ping $i count=3 ];
:local u [/tool fetch url=("https://$s") mode=https http-method=get \
as-value keep-result=no];

View file

@ -10,7 +10,7 @@
:foreach s in=$w do={
# try a DNS resolution of this site
:local i [/resolve $s];
:local i [:resolve $s];
# try pinging the IP address of this site
:local p [/ping $i count=3 ];

View file

@ -10,7 +10,7 @@
:foreach SiteName in=$WebSites do={
# try a DNS resolution of this site
:local IpAddress [/resolve $SiteName];
:local IpAddress [:resolve $SiteName];
# try pinging the IP address of this site
:local PingResult [/ping $IpAddress count=3 ];

View file

@ -23,7 +23,7 @@
a valid string!");
}
return [/resolve $WebSiteName];
return [:resolve $WebSiteName];
}
# function to ping an IP address 3 times

View file

@ -2,6 +2,6 @@
:local WebSites { "badname1234.com"; "google.com"};
:foreach SiteName in=$WebSites do={
:local SiteIpAddress [/resolve $SiteName];
:local SiteIpAddress [:resolve $SiteName];
:put "Site IP for $SiteName is $SiteIpAddress";
}

View file

@ -2,9 +2,9 @@
:local WebSites { "badname1234.com"; "google.com"};
:foreach SiteName in=$WebSites do={
:do {
:local SiteIpAddress [/resolve $SiteName];
:local SiteIpAddress [:resolve $SiteName];
:put "Site IP for $SiteName is $SiteIpAddress";
} on-error={
:put "Name lookup failed for $SiteName"
:put "Name lookup failed for $SiteName";
}
}

View file

@ -27,7 +27,7 @@
# try a name lookup
:do {
return [/resolve $WebSiteName];
return [:resolve $WebSiteName];
} on-error={
$LogMessageFunc ("DnsResolveFunc: name resolution failed for \
site: $WebSiteName!");

View file

@ -46,7 +46,7 @@
:do {
$DebugFunc "Looking up IP of site name...";
:local SiteIpAddr [/resolve $WebSiteName];
:local SiteIpAddr [:resolve $WebSiteName];
$DebugFunc $SiteIpAddr;
:return $SiteIpAddr;
} on-error={

View file

@ -3,7 +3,7 @@
:local w {"mikrotik.com"; "www.google.com"; "twitter.com"};
:foreach s in=$w do={
:local i [/resolve $s];
:local i [:resolve $s];
:local p [/ping $i count=3 ];
:local u [/tool fetch url=("https://$s") mode=https http-method=get \
as-value keep-result=no];

View file

@ -10,7 +10,7 @@
:foreach s in=$w do={
# try a DNS resolution of this site
:local i [/resolve $s];
:local i [:resolve $s];
# try pinging the IP address of this site
:local p [/ping $i count=3 ];

View file

@ -10,7 +10,7 @@
:foreach SiteName in=$WebSites do={
# try a DNS resolution of this site
:local IpAddress [/resolve $SiteName];
:local IpAddress [:resolve $SiteName];
# try pinging the IP address of this site
:local PingResult [/ping $IpAddress count=3 ];

View file

@ -23,7 +23,7 @@
a valid string!");
}
return [/resolve $WebSiteName];
return [:resolve $WebSiteName];
}
# function to ping an IP address 3 times

View file

@ -2,6 +2,6 @@
:local WebSites { "badname1234.com"; "google.com"};
:foreach SiteName in=$WebSites do={
:local SiteIpAddress [/resolve $SiteName];
:local SiteIpAddress [:resolve $SiteName];
:put "Site IP for $SiteName is $SiteIpAddress";
}

View file

@ -2,9 +2,9 @@
:local WebSites { "badname1234.com"; "google.com"};
:foreach SiteName in=$WebSites do={
:do {
:local SiteIpAddress [/resolve $SiteName];
:local SiteIpAddress [:resolve $SiteName];
:put "Site IP for $SiteName is $SiteIpAddress";
} on-error={
:put "Name lookup failed for $SiteName"
:put "Name lookup failed for $SiteName";
}
}

View file

@ -27,7 +27,7 @@
# try a name lookup
:do {
return [/resolve $WebSiteName];
return [:resolve $WebSiteName];
} on-error={
$LogMessageFunc ("DnsResolveFunc: name resolution failed for \
site: $WebSiteName!");

View file

@ -46,7 +46,7 @@
:do {
$DebugFunc "Looking up IP of site name...";
:local SiteIpAddr [/resolve $WebSiteName];
:local SiteIpAddr [:resolve $WebSiteName];
$DebugFunc $SiteIpAddr;
:return $SiteIpAddr;
} on-error={