We have a ziti environment, on 1.7.1
I have a basic service setup, that mimics emoscardini’s approach ( Conneting Remote Endpoints with a On-Prem AD - #6 by emoscardini )
For argument’s sake, we have hosted tenant environments, and we’ll call the tenant…dundundun … ’tenant’, and the base domain is domain.root - so tenant.domain.root
Intercept.v1
"data": {
"portRanges": [
{
"high": 138,
"low": 138
},
{
"high": 53,
"low": 53
},
{
"high": 389,
"low": 389
},
{
"high": 445,
"low": 445
},
{
"low": 1024,
"high": 65535
},
{
"high": 88,
"low": 88
},
{
"high": 636,
"low": 636
},
{
"high": 123,
"low": 123
},
{
"high": 135,
"low": 135
}
],
"addresses": [
"*.tenant.domain.root"
],
"protocols": [
"tcp",
"udp"
]
},
"tags": {}
}
Host.v1
"data": {
"forwardProtocol": true,
"forwardAddress": true,
"forwardPort": true,
"allowedAddresses": [
"*.tenant.domain.root"
],
"allowedPortRanges": [
{
"high": 138,
"low": 138
},
{
"high": 53,
"low": 53
},
{
"high": 389,
"low": 389
},
{
"high": 445,
"low": 445
},
{
"low": 1024,
"high": 65535
},
{
"high": 88,
"low": 88
},
{
"high": 636,
"low": 636
},
{
"high": 123,
"low": 123
},
{
"high": 135,
"low": 135
}
],
"allowedProtocols": [
"tcp",
"udp"
]
},
"tags": {}
}
Remote client workstations running the latest ZDEW.
Almost everything works; DNS resolves, and in particular, SRV records resolve, all Test-NetConnection tests are happy etc.
However, gpupdate /force is stubbornly broken, with the typical unhelpful messages
Probably the most significant difference in our approach is that we're using a gateway host in the tenant windows/dc lan. Within the tenant LAN, we have a VM (just plain old Ubuntu) running ziti-edge-tunnel with the host-side identity. This is due to some of the dogshit applications the clients run in their Windows environment, we need to keep Ziti off of Windows - no fault of Ziti at all, simply the fact it adds another network adapter - but that's by the by.
If I step around Ziti’s DNS resolver on the remote client, by adding an NRPT rule that points to one of the Ziti IPs, ie
Get a Ziti IP
Resolve-DnsName -Name tenant.domain.root
Name Type TTL Section IPAddress
---- ---- --- ------- ---------
tenant.domain.root A 60 Answer 100.64.0.6
Then add a wildcard to Windows NRPT
Add-DnsClientNrptRule -Namespace ".tenant.domain.root" -NameServers "100.64.0.6" -Comment "test"
Then gpupdate can work - but that’s less than ideal.
The tldr is - I'm missing something! - I just can't figure out what.
I have tried removing the port ranges and just using 1-65535, but that doesnt appear to change anything.
Other than ziti logs complaining about bloody wpad.tenant.domain.root, there is nothing in the logs when running gpupdate. It's as if the Windows workstation has cached something and preemptively decides not to bother trying.
Does anyone have any experience with this?
