Beschreibung
Ändert die IPv4-Konfiguration des ThinPrint Hubs (vgl. Netzwerk).
Siehe auch Get-TPHubTaskResult.
Syntax
Set-TPHubNetworkIPV4 -UseDhcp <bool> -Address <string> -Netmask <string> [-Gateway <string>]
[-Dns1 <string>] [-Dns2 <string>] [-Suffix <string>] -Config <variable> [-Proxy <string>]
Parameter | Beschreibung |
-UseDhcp | 1 = DHCP, 0 = manuelle Netzwerkeinstellungen (alternativ zu -Config) |
-Address | feste IP-Adresse (zu -UseDhcp = 0) |
-Netmask | Subnetz-Maske (zu -UseDhcp = 0) |
-Gateway | Zelleninhalt |
-Dns1 | erster DNS-Server (zu -UseDhcp = 0, optional) |
-Dns2 | zweiter DNS-Server (zu -UseDhcp = 0, optional) |
-Suffix | DNS-Suffix resp. DNS-Suchdomäne (zu -UseDhcp = 0, optional) |
-Config | durch Variable spezifizierte IPv4-Konfiguration (alternativ zu -Dhcp) |
-Proxy | • optional (ab Firmware-Version 1.1): Adresse des Proxy-Servers • kann auch global mit Set-TPHubProxy festgelegt werden |
Beispiel 1
Get-TPHubNetworkIPV4 Set-TPHubNetworkIPV4 -UseDhcp 1 Get-TPHubNetworkIPV4
Beispiel 2
$a = Get-TPHubNetworkIPV4 $a $b = "Explicit" $c = "192.168.149.18" $a.Mode = $b $a.DnsSrv2 = $c Set-TPHubNetworkIPV4 -Config $a oder $a | Set-TPHubNetworkIPV4 Get-TPHubNetworkIPV4