Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpnSense
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
OpnSense
Commits
1159b089
Commit
1159b089
authored
Mar 13, 2016
by
Ad Schellevis
Committed by
Franco Fichtner
Mar 15, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
routing, fix typo
(cherry picked from commit
ecb715c3
)
parent
484c2001
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
InterfaceController.php
...trollers/OPNsense/Diagnostics/Api/InterfaceController.php
+3
-3
No files found.
src/opnsense/mvc/app/controllers/OPNsense/Diagnostics/Api/InterfaceController.php
View file @
1159b089
...
...
@@ -109,7 +109,7 @@ class InterfaceController extends ApiControllerBase
public
function
getRoutesAction
()
{
$backend
=
new
Backend
();
if
(
empty
(
$this
->
request
->
get
(
'resolve'
,
null
)))
{
if
(
empty
(
$this
->
request
->
get
(
'resolve'
)))
{
$response
=
$backend
->
configdpRun
(
"interface routes list -n json"
);
}
else
{
$response
=
$backend
->
configdpRun
(
"interface routes list json"
);
...
...
@@ -120,9 +120,9 @@ class InterfaceController extends ApiControllerBase
$intfmap
=
$this
->
getInterfaceNames
();
foreach
(
$routingtable
as
&
$routingentry
)
{
if
(
array_key_exists
(
$routingentry
[
'netif'
],
$intfmap
))
{
$
ndp
entry
[
'intf_description'
]
=
$intfmap
[
$routingentry
[
'netif'
]];
$
routing
entry
[
'intf_description'
]
=
$intfmap
[
$routingentry
[
'netif'
]];
}
else
{
$
ndp
entry
[
'intf_description'
]
=
""
;
$
routing
entry
[
'intf_description'
]
=
""
;
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment