mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-05-31 22:40:43 +00:00
Merge pull request #1297 from GNS3/bugfix/1201
I resolved " Remove Qemu legacy networking code
This commit is contained in:
commit
978b473e8e
@ -45,7 +45,6 @@ export class Properties {
|
|||||||
kernel_command_line: string;
|
kernel_command_line: string;
|
||||||
kernel_image: string;
|
kernel_image: string;
|
||||||
kernel_image_md5sum?: any;
|
kernel_image_md5sum?: any;
|
||||||
legacy_networking: boolean;
|
|
||||||
mac_address: string;
|
mac_address: string;
|
||||||
options: string;
|
options: string;
|
||||||
platform: string;
|
platform: string;
|
||||||
|
@ -192,7 +192,6 @@
|
|||||||
<button mat-button class="configButton" (click)="setCustomAdaptersConfiguratorState(true)">
|
<button mat-button class="configButton" (click)="setCustomAdaptersConfiguratorState(true)">
|
||||||
Configure custom adapters</button
|
Configure custom adapters</button
|
||||||
><br />
|
><br />
|
||||||
<mat-checkbox [(ngModel)]="qemuTemplate.legacy_networking"> Use the legacy networking mode </mat-checkbox>
|
|
||||||
</mat-expansion-panel>
|
</mat-expansion-panel>
|
||||||
<mat-expansion-panel>
|
<mat-expansion-panel>
|
||||||
<mat-expansion-panel-header>
|
<mat-expansion-panel-header>
|
||||||
|
@ -143,9 +143,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</mat-tab>
|
</mat-tab>
|
||||||
<mat-tab label="Network">
|
<mat-tab label="Network">
|
||||||
<br /><mat-checkbox [(ngModel)]="node.properties.legacy_networking">
|
<br />
|
||||||
Use the legacy networking mode
|
|
||||||
</mat-checkbox>
|
|
||||||
<br /><mat-checkbox [(ngModel)]="node.properties.replicate_network_connection_state">
|
<br /><mat-checkbox [(ngModel)]="node.properties.replicate_network_connection_state">
|
||||||
Replicate network connection state
|
Replicate network connection state
|
||||||
</mat-checkbox>
|
</mat-checkbox>
|
||||||
|
@ -27,7 +27,6 @@ export class QemuTemplate {
|
|||||||
initrd: string;
|
initrd: string;
|
||||||
kernel_command_line: string;
|
kernel_command_line: string;
|
||||||
kernel_image: string;
|
kernel_image: string;
|
||||||
legacy_networking: boolean;
|
|
||||||
linked_clone: boolean;
|
linked_clone: boolean;
|
||||||
mac_address: string;
|
mac_address: string;
|
||||||
name: string;
|
name: string;
|
||||||
|
@ -62,7 +62,6 @@ describe('QemuService', () => {
|
|||||||
initrd: '',
|
initrd: '',
|
||||||
kernel_command_line: '',
|
kernel_command_line: '',
|
||||||
kernel_image: '',
|
kernel_image: '',
|
||||||
legacy_networking: false,
|
|
||||||
linked_clone: true,
|
linked_clone: true,
|
||||||
mac_address: '',
|
mac_address: '',
|
||||||
name: '',
|
name: '',
|
||||||
@ -115,7 +114,6 @@ describe('QemuService', () => {
|
|||||||
initrd: '',
|
initrd: '',
|
||||||
kernel_command_line: '',
|
kernel_command_line: '',
|
||||||
kernel_image: '',
|
kernel_image: '',
|
||||||
legacy_networking: false,
|
|
||||||
linked_clone: true,
|
linked_clone: true,
|
||||||
mac_address: '',
|
mac_address: '',
|
||||||
name: '',
|
name: '',
|
||||||
|
@ -41,7 +41,6 @@ export class TemplateMocksService {
|
|||||||
initrd: '',
|
initrd: '',
|
||||||
kernel_command_line: '',
|
kernel_command_line: '',
|
||||||
kernel_image: '',
|
kernel_image: '',
|
||||||
legacy_networking: false,
|
|
||||||
linked_clone: true,
|
linked_clone: true,
|
||||||
mac_address: '',
|
mac_address: '',
|
||||||
name: '',
|
name: '',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user