diff --git a/index.html b/index.html index aef0c0a..e9f65e0 100644 --- a/index.html +++ b/index.html @@ -40,11 +40,17 @@ import { init } from "/tun/tailscale_tun.js"; import { showPeers, showLoginURL } from "/tun/test/ui.js"; - const { loginURL, ipStack } = await init({ netMapCallback: showPeers }); + const { loginURL, ipStack } = await init({ + netMapCallback: showPeers, + dnsIp: "8.8.8.8", + controlURL: "https://headscale.yuri.space", + exitNodeIp: "100.64.0.3", + }); showLoginURL(loginURL); - const { listen, connect, parseIP } = await ipStack; + const { listen, connect, bind, parseIP } = await ipStack; window.listen = listen; window.connect = connect; + window.bind = bind; window.parseIP = parseIP;