mirror of https://github.com/apache/cloudstack.git
Fix, change network.disable.rpfilter type from integer to boolean. (#6380)
* Fix, change network.disable.rpfilter type from integer to boolean. `network.disable.rpfilter` global setting doesn't accept boolean values. * Changed consoleproxy.disable.rpfilter global setting type from integer to boolean.
This commit is contained in:
parent
57ecdf9ea6
commit
1964b7fda3
|
|
@ -265,7 +265,7 @@ public enum Config {
|
|||
NetworkRouterRpFilter(
|
||||
"Network",
|
||||
ManagementServer.class,
|
||||
Integer.class,
|
||||
Boolean.class,
|
||||
"network.disable.rpfilter",
|
||||
"true",
|
||||
"disable rp_filter on Domain Router VM public interfaces.",
|
||||
|
|
@ -446,7 +446,7 @@ public enum Config {
|
|||
ConsoleProxyDisableRpFilter(
|
||||
"Console Proxy",
|
||||
AgentManager.class,
|
||||
Integer.class,
|
||||
Boolean.class,
|
||||
"consoleproxy.disable.rpfilter",
|
||||
"true",
|
||||
"disable rp_filter on console proxy VM public interface",
|
||||
|
|
|
|||
Loading…
Reference in New Issue