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 - primroseN

#1
24.7, 24.10 Legacy Series / Bind Zones
December 11, 2024, 09:12:39 AM
Hello everyone,

I have a primary zone in BIND but I can't ping any value of that zone.

I edited the /etc/resolve.conf file to include the domain + cross checked the named.conf file and the zone is included as expected, but the name still does not resolve. I'm new to DNS, any insight is appreciated.

My zone looks like:

$TTL 86400
@       IN      SOA    opnsense.localdomain. mail.opnsense.localdomain. ( 2412101547 21600 3600 3542400 3600 )
                NS epcns
@                A 192.168.xx.xx
epcns                A 192.168.xx.xx
pcrf                A 127.0.0.5


ping epcns does not resolve. Is there an extra step I'm missing or
#2
24.1, 24.4 Legacy Series / Font awesome version
May 31, 2024, 10:38:16 PM
Hello all,
What version of Font Awesome is OPNsense using?
For context,
I want to develop a simple plugin and I'm just curious the version of Font Awesome currently being used.
Thanks
#3
Thank you for your help. I didn't know I could manually add it like that. Everything is working as expected now.

Cheers,
- Prim
#4
Hello all,

I have a custom package, os-myPackage-devel-0.2.pkg which successfully installs on any fresh machine running OPNsense v24.1. But I have an issue with the rc scripts. They don't appear ship into /usr/local/etc/rc.d/  of the new machine, as expected. I presumed that having them referenced in the conf file under actions.d directory was enough. Was I wrong?

Do i need extra steps during packaging to reference the scripts or something similar?

Thanks for your help.
#5
23.7 Legacy Series / Re: Creating an installable plugin
February 20, 2024, 03:22:47 PM
Hello,

I appear to have hit another snag. After successfully running make plugins-<my plugin> I can't seem to find the plugin anywhere on my system. I ran pkg update and that  did not yield any results, as did rebooting the system.

In addition, upon doing some research, I realized I can't state the plugin dependencies in the Makefile. My plugin requires a couple of packages like gcc, mongodb. If I can't put these in the POST_INSTALL.pre/post file, how best can I handle installation of those dependencies?

#6
23.7 Legacy Series / Re: Creating an installable plugin
February 16, 2024, 07:21:31 PM
Hey Maurice, sorry for the late response.

This has been very helpful. I have successfully packaged my plugin. Thank you

Cheers,
- Prim
#7
23.7 Legacy Series / Creating an installable plugin
February 13, 2024, 04:54:24 PM
Hello all,

I'm an OPNsense newbie I apologize for my limited knowledge. I have been following the HelloWorld plugin development documentation and I appear to have hit a roadblock. When I run the make plugins command, the command runs for a notoriously long time -6+ hours( it is still running as I type this, which is my concern )

My query is 1)- Is this normal behavior or is it my architecture in question?
2) - Is there a way of simply building only the plugin I have created, as opposed to re-building all available plugins on the system?

I will greatly appreciate  any help and guidance on how to make an installable plugin for OPNsense.