George

Results 43 comments of George

This is a very important feature. How can this be implemented?

Meanwhile this package can be used instead https://github.com/ffulm/firmware/tree/master/package/simple-radvd

@Scondo Вроде как NS запись должна возвращать домен authoritative сервера, а не его IP https://www.rfc-editor.org/rfc/rfc1035.html ``` 3.3.11. NS RDATA format +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ / NSDNAME / / / +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ where: NSDNAME A...

Да, IP по стандарту нельзя возвращать, а жаль https://serverfault.com/questions/764937/why-dont-ns-records-contain-ip-addresses

https://en.wikipedia.org/wiki/Domain_Name_System#Circular_dependencies_and_glue_records > For example, if the authoritative name server for example.org is ns1.example.org, a computer trying to resolve www.example.org first resolves ns1.example.org. Since ns1 is contained in example.org, this requires...

Значит, на запрос NS xxx.meshname мы отвечаем сразу двумя resource records: ``` @ xxx.meshname NS ns1.xxx.meshname ns1.xxx.meshname AAAA 200::abcd ``` Получается, надо захардкодить сабдомен для NS записи в имплементации или...

> Ну а что мешает считать собственно корневой домен NS доменом? Сейчас в протоколе написано >"xxx.meshname" name is itself managed by the DNS server derived from "xxx" and can point...

Пока не совсем понятно, как сделать имплементацию, возможно понадобится возвращать SOA+glue record https://www.cloudflare.com/learning/dns/dns-records/dns-soa-record/

Your domain resolves just fine. I use a record like that: ``` aiql7yv7ka6ck5mxpfnugi3hoe.meshname. IN SOA aiql7yv7ka6ck5mxpfnugi3hoe.meshname. admin.aiql7yv7ka6ck5mxpfnugi3hoe.meshname. ( 1111111111 7200 3600 1209600 3600 ) ``` I'm not absolutely sure if...

Запрос на добавление кастомных TLD появился в этом треде, в конце russian-meshnet/YggNS#1 Эти TLD в описании протокола никак не фигурируют, такая фича только в моей имплементации. Наверное, стоит отдельно прописать...