Created
February 22, 2022 19:50
-
-
Save szkrd/fe5fa4e043a7447995158e78075072db to your computer and use it in GitHub Desktop.
Wait for interface to come up then start forwarder to local server (windows).
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const net = require('net'); | |
const spawn = require('child_process').spawn; | |
const ports = [80, 5000]; | |
const sleepSecs = 30; | |
const interfaceMatcher = /(169\.254\.[\d\.]+)/; | |
function doForward(listenInterface = '0.0.0.0') { | |
const server = net.createServer(function (from) { | |
const to = net.createConnection({ host: '127.0.0.1', port: ports[1] }); | |
from.pipe(to).on('error', (err) => console.log('from error', err.code)); | |
to.pipe(from).on('error', (err) => console.log('to error', err.code)); | |
}); | |
server.listen(ports[0], listenInterface); | |
} | |
function getListenIp() { | |
return new Promise((resolve, reject) => { | |
let ip = ''; | |
const child = spawn('ipconfig'); | |
child.stdout | |
.on('data', (data) => { | |
const match = data.toString().match(interfaceMatcher); | |
if (Array.isArray(match) && match.length === 2) return resolve((ip = match[0])); | |
}) | |
.on('end', () => (!ip ? reject(false) : null)); | |
}); | |
} | |
async function sleep(timeout = 0) { | |
return new Promise((resolve) => | |
setTimeout(() => { | |
resolve(true); | |
}, timeout) | |
); | |
} | |
async function main() { | |
let ip = ''; | |
while (!ip) { | |
try { | |
ip = await getListenIp(); | |
console.info( | |
'interface is up, starting forwarder\n' + | |
`(${ip}:${ports[0]} -> 127.0.0.1:${ports[1]})\npress ctrl+c to exit` | |
); | |
} catch (err) { | |
console.info('interface is down, nothing to do'); | |
await sleep(sleepSecs * 1000); | |
} | |
} | |
if (ip) { | |
doForward(ip); | |
} | |
} | |
main().catch((err) => console.error(err)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment