Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - Vinez

#1
Have you ever found a solution, my exit node seems to ignore all firewall rules.
#2
Een uitgegeven IP adres blijft gebonden zelfs na het verlopen van de leasetijd aan het zelfde mac adres. Een DHCP server zal een al gebruikt adres pas weer opnieuw uitgeven als:

1 De lease tijd is verlopen. (Renewal Time)
2 Rebinding Time is verlopen.
3 Er zijn geen andere adressen meer beschikbaar.

Het is dus niet vreemd maar het normale gedrag van een DHCP server.

Mocht je er mee willen klooien dan kan de middels de advanced options
zie:
58   Renewal Time   4   DHCP Renewal (T1) Time   [RFC2132]
59   Rebinding Time   4   DHCP Rebinding (T2) Time   [RFC2132]

Suc7


58   Renewal Time   4   DHCP Renewal (T1) Time   [RFC2132]
59   Rebinding Time   4   DHCP Rebinding (T2) Time   [RFC2132]
#3
Nog een andere tip als je Ziggo in Bridge modus zet.

Ziggo deelt regelmatig verkeerde ip adressen uit vanaf 192.168.100.1
Je kan dit probleem oplossen door je interface aan te passen onder "DHCP client configuration" en dan bij "Reject Leases From" het adres "192.168.100.1" in te vullen.
#4
Dit soort verkeer is normaal op het Ziggo netwerk. Je kan het negeren want dit wordt door de firewall tegengehouden met verschillende regels zoals "Block private networks from WAN" en "Block bogon IPv4 networks from WAN".
#5
Hallo Allen,

Als ik de live view van de firewall open, zie ik de laatste tijd erg veel NTP verkeer van localhost naar localhost.
Ik heb waarschijnlijk ergens een configuratie fout, ik kan deze alleen niet vinden.

Hebben jullie een idee waar dit verkeer vandaan komt. Zelfs als ik NTPd uitzet blijft dit verkeer komen.

Hier wat afbeeldingen van mijn config.







Alvast bedankt voor jullie inzicht...
#6
All solved now, I can put in a pull request on GitHub if you are interested in adding the ISP TransIP to the list of supported ISP's.
#7
Few hours later

I am nearly there XD, I have edited the plugins php file to support my provider TransIP the api looks similar to that of DigitalOcean.

/services_dyndns_edit.php: Dynamic DNS Record ID (): PAYLOAD: {"error":"Please supply the 'dnsEntries' parameter"}

That is how far I am now...

something is wrong with my array syntax in the code below:

$hostData = array("data" => "'dnsEntry': {
                                               'name': 'www',
                                               'expire': 60,
                                               'type': 'A',
                                               'content': '$this->_dnsIP' }");

I have tried many things but new to php, maybe you can see or spot the problem?
#8
Thanks for help!

How could I then confirm the curl command is running? Maybe my problem is in the syntax I am using I have to following filled in in the "update url" field.

curl X PATCH \ -H "Content-Type: application/json" \ -H "Authorization: Bearer KEYHERE" \ -d ' {   "dnsEntry": {     "name": "www",     "expire": 60,     "type": "A",     "content": "%IP%"   }  }  ' \ "ADRESSHERE"

in the logs it says it successfully updates the ip but I think it only updates the cache, I think it is not running the curl command. I tried looking with the packet capture with no success. I can confirm my curl command is working in "Visual Code". so maybe my syntax is wrong for opnsense. sorry I have tried to look for examples of custom dns setups but could not find any examples. How would I convert to an URL?

Again your help is greatly appreciated !
#9
Hello all,

Hope you can help me, I have searched the forum but found no related posts so here i go

I am setting up a custom ddns with my registrar, I have it fully configured, however i need to troubleshoot it by viewing the http response. i have turned on verbose logging and can see some messages in the logs. However i need to see the full http response.... How can i get this information? Do i need to setup SSH access and find it in the logs somewhere else? Is it not saved in the logging?

Thanks for helping in advance !