Skip to content

Instantly share code, notes, and snippets.

@flower1024
flower1024 / FritzBoxIP.ts
Last active August 3, 2024 08:03
Get IPv4 and IPv6 WAN IP from FritzBox
import { parse as xmlParser } from 'fsp-xml-parser';
export default class FritzBoxIP {
private _fritzBox: string;
constructor(fritzBox: string) {
this._fritzBox = fritzBox;
}
async IPv4(): Promise<string> {