OPNsense Forum

Archive => 24.1, 24.4 Legacy Series => Topic started by: Maurice on January 19, 2024, 06:13:34 PM

Title: New interfaces overview - the good, the bad and the ugly
Post by: Maurice on January 19, 2024, 06:13:34 PM
The good:
- Condensed information in table view, without having to expand sections.
- Sortable!
- Routes!
- Very detailed information in "Info" view.

The bad:
- Missing information, even in "Info" view: Delegated IPv6 prefix, DNS servers. This was there in the old overview.
- No DHCP reload button for DHCPv6 interfaces without DHCPv4. We fixed this a while ago in the old overview, but it seems it didn't make it to the new one.

The ugly:
- IPv6-only interfaces show "Link Type none".
- Status is only indicated by colour, the shape of the plug symbols is the same. Not great if you have issues seeing red / green.

What are your thoughts?

Cheers
Maurice
Title: Re: New interfaces overview - the good, the bad and the ugly
Post by: Patrick M. Hausen on January 19, 2024, 07:37:08 PM
Quote from: Maurice on January 19, 2024, 06:13:34 PM
The bad:
- Missing information, even in "Info" view: Delegated IPv6 prefix, DNS servers.
DNS servers are not an interface property.  :)
Title: Re: New interfaces overview - the good, the bad and the ugly
Post by: cookiemonster on January 19, 2024, 11:11:03 PM
ver 23.1 shows them for the WAN interface. Maybe that's why it thought it was shown for all :)
Title: Re: New interfaces overview - the good, the bad and the ugly
Post by: Maurice on January 20, 2024, 12:45:11 AM
@Patrick Technically speaking, you might be correct. The old interface overview showed (some) information acquired via DHCP and RAs in the properties of the interface which received it. This included DNS servers and delegated prefixes. I would be fine with showing this information somewhere else, but at the moment it seems nowhere to be found.
Title: Re: New interfaces overview - the good, the bad and the ugly
Post by: newsense on January 20, 2024, 09:31:24 PM
Reducing the width of the Status column might void the need for horizontal scrolling on 1366x768 screens.

Don't ask me how I know :)
Title: Re: New interfaces overview - the good, the bad and the ugly
Post by: N00bOner on February 02, 2024, 03:58:25 PM
Is there any way to get information about current interface uptime?

On 23.X it was available like on screenshot from this post:

https://forum.opnsense.org/index.php?topic=25503.msg122552#msg122552


Title: Re: New interfaces overview - the good, the bad and the ugly
Post by: jbhorner on February 02, 2024, 06:56:57 PM
The lack showing the IPv6 WAN delagated prefix is bad drop in my mind. WHY would that have been taken away? I cannot think of one good use case that would justify its removal...unless OPNsense is trying to mimic pFsense.
Title: Re: New interfaces overview - the good, the bad and the ugly
Post by: emzy on February 04, 2024, 03:13:39 AM
Being able to see the delegated prefix seems pretty important. It would be really nice if it was added back somewhere in the UI. I'm not even sure what if any command I can run in the terminal to retrieve it as a workaround. Does anyone know?
Title: Re: New interfaces overview - the good, the bad and the ugly
Post by: Maurice on February 04, 2024, 03:51:15 AM
cat /tmp/*_prefixv6
Title: Re: New interfaces overview - the good, the bad and the ugly
Post by: flushell on February 24, 2024, 02:57:25 PM
Quote from: emzy on February 04, 2024, 03:13:39 AM
Being able to see the delegated prefix seems pretty important. It would be really nice if it was added back somewhere in the UI. I'm not even sure what if any command I can run in the terminal to retrieve it as a workaround. Does anyone know?

Ran into this myself and posted (https://forum.opnsense.org/index.php?topic=38884.0) about it. I think it should be (re)added. I now have to do a

ifctl -6pi [interface]

on the console to see it.
Title: Re: New interfaces overview - the good, the bad and the ugly
Post by: N00bOner on February 26, 2024, 03:15:11 PM
Since new interface menu details no longer holds info about connection time, as workaround I use attached command:

grep -wns "IPCP: LayerUp" latest.log | cut -b 10-29

So instead of getting connection time, I can see when the interface was connected.
Not perfect, but works.