123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- name: 🐛 Bug Report 🧰
- description: File a bug 🐛 report.
- title: "<package-name>: <summary>"
- # labels: ["bug", "triage"]
- # projects: ["octo-org/1", "octo-org/44"]
- # assignees:
- # - octocat
- body:
- - type: markdown
- attributes:
- value: |
- Thanks for taking the time to fill out this bug report!
- - type: checkboxes
- attributes:
- label: Is there an existing issue for this?
- description: Please search to see if an issue already exists for the bug you encountered.
- options:
- - label: I have searched the existing issues
- required: true
- - type: textarea
- id: screenshots-or-captures
- attributes:
- label: screenshots or captures
- description: Screenshots or captures which illustrate the problem
- placeholder: |
- An mp4 screen capture is also possible
- value:
- validations:
- required: false
- - type: textarea
- id: what-happened
- attributes:
- label: Actual behaviour
- description: Describe what happened
- placeholder: |
- Describe what happened
-
- 1. option ra_mtu '1500' is set correctly in /etc/config/dhcp
- 2. In LuCI though, RA MTU and RA Hop Limit are still displaying the default values in light gray font color.
- value:
- validations:
- required: true
- - type: textarea
- id: expect-to-happen
- attributes:
- label: Expected behaviour
- description: Describe what should happen
- placeholder: |
- Tell us what you you think should happen
-
- 1. option ra_mtu '1500' is set correctly in /etc/config/dhcp
- 2. In LuCI though, RA MTU and RA Hop Limit display correctly.
- value:
- validations:
- required: true
- - type: textarea
- id: what-you-did
- attributes:
- label: Steps to reproduce
- placeholder: |
- 1. go to: Network → Interfaces → LAN (an interface with a static address) → DHCP server tab → IPv6 RA settings tab
- 2. set RA MTU and RA Hop Limit to arbitrary non-default value
- 3. Save & Apply
- 4. go to: IPv6 RA settings tab again
- value:
- validations:
- required: true
- - type: textarea
- id: version
- attributes:
- label: Additional Information
- description: |
- What version of openwrt/luci are you running? <br/>
- ```
- cat /etc/os-release
- ```
- <br/>
- or copy/paste the luci and/or module version from the main status page
- render: shell
- value:
- placeholder: |
- e.g.
- NAME="OpenWrt"
- VERSION="23.05.5"
- ID="openwrt"
- ID_LIKE="lede openwrt"
- PRETTY_NAME="OpenWrt 23.05.5"
- VERSION_ID="23.05.5"
- HOME_URL="https://openwrt.org/"
- BUG_URL="https://bugs.openwrt.org/"
- SUPPORT_URL="https://forum.openwrt.org/"
- BUILD_ID="r24106-10cc5fcd00"
- OPENWRT_BOARD="mediatek/filogic"
- OPENWRT_ARCH="aarch64_cortex-a53"
- OPENWRT_TAINTS=""
- OPENWRT_DEVICE_MANUFACTURER="OpenWrt"
- OPENWRT_DEVICE_MANUFACTURER_URL="https://openwrt.org/"
- OPENWRT_DEVICE_PRODUCT="Generic"
- OPENWRT_DEVICE_REVISION="v0"
- OPENWRT_RELEASE="OpenWrt 23.05.5 r24106-10cc5fcd00"
- validations:
- required: true
- - type: dropdown
- id: browsers
- attributes:
- label: What browsers do you see the problem on?
- multiple: true
- options:
- - Firefox
- - Chrome
- - Safari
- - Microsoft Edge
- - type: textarea
- id: logs
- attributes:
- label: Relevant log output
- description: Please copy and paste any relevant log output from your browser (web developer tools) console. This will be automatically formatted into code, so no need for backticks.
- render: shell
|