+
IPv4
+ ${ipv4.address
+ ? html`
IP Address: ${ipv4.address?.join(", ")}
`
+ : ""}
+ ${ipv4.gateway ? html`
Gateway: ${ipv4.gateway}
` : ""}
+ ${ipv4.method ? html`
Method: ${ipv4.method}
` : ""}
+ ${ipv4.nameservers?.length
+ ? html`
+
Name Servers: ${ipv4.nameservers?.join(", ")}
+ `
+ : ""}
+
+ `
+ : ""}
+ ${ipv6
+ ? html`
+
+
IPv6
+ ${ipv6.address
+ ? html`
IP Address: ${ipv6.address?.join(", ")}
`
+ : ""}
+ ${ipv6.gateway ? html`
Gateway: ${ipv6.gateway}
` : ""}
+ ${ipv6.method ? html`
Method: ${ipv6.method}
` : ""}
+ ${ipv6.nameservers?.length
+ ? html`
+
Name Servers: ${ipv6.nameservers?.join(", ")}
+ `
+ : ""}
+
+ `
+ : ""}
+