博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
kickstart配置文件适配 vlan 场景应用
阅读量:5756 次
发布时间:2019-06-18

本文共 1195 字,大约阅读时间需要 3 分钟。

hot3.png

https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/html/Installation_Guide/sect-kickstart-syntax.html

---------------------
# 单网卡+Vlan+DHCP

network --bootproto=dhcp --noipv6 --activate --device=enp2s0f0 --vlanid=50 --interfacename=vlan70

# 单网卡+Vlan+固定IP

network --device=enp2s0f0 --noipv6 --activate --bootproto=static --ip=10.245.254.107 --netmask=255.255.255.0 --gateway=10.245.254.1 --nameserver=10.245.254.168  --vlanid=50 --interfacename=vlan70

# 双网卡绑定+Vlan+DHCP

network --device=bond0 --noipv6 --onboot=yes --bootproto=dhcp --bondslaves=enp2s0f0,enp2s0f1 --bondopts="mode=4 miimon=100 lacp_rate=fast" --vlanid=50 --interfacename=vlan50

 

PXE default.cfg中给网卡打标签

label rhel7bladekernel http://10.245.254.93/linux/rhel/7Server/x86_64/images/pxeboot/vmlinuz#append initrd=http://10.245.254.93/linux/rhel/7Server/x86_64/images/pxeboot/initrd.img inst.repo=http://10.245.254.93/linux/rhel/7Server/x86_64 vlan=vlan50:enp2s0f1 inst.vnc inst.vncpassword=foxCoappend initrd=http://10.245.254.93/linux/rhel/7Server/x86_64/images/pxeboot/initrd.img inst.ks=http://10.245.254.171/linux/ks/ks-rhel70-v3-blade.cfg vlan=vlan50:enp2s0f1

 

转载于:https://my.oschina.net/u/3362827/blog/1524913

你可能感兴趣的文章
阿里云PHP Redis代码示例
查看>>
php生成随机数
查看>>
2017-02-20
查看>>
win7与win7之间无法访问共享文件的问题解决(转)
查看>>
PS是LINUX下最常用的也是非常强大的进程查看命令
查看>>
插入排序
查看>>
内存管理3 - Win32汇编语言056
查看>>
一个简单的购物类网站
查看>>
限制数量不可为0,且不大于1000
查看>>
HDU1232:畅通工程(并查集)
查看>>
在Java中如何正确地终止一个线程
查看>>
linux 命令
查看>>
HttpClient 4.3教程 第六章 HTTP缓存
查看>>
【学习Android NDK开发】搭建Android SDK开发环境(Ubuntu 12.04 LTS 32-bit)
查看>>
Microsoft Visual Studio Community 2017 修改新建项目的默认位置
查看>>
什么是代码
查看>>
[程序人生]: 儿童涂鸦
查看>>
Cassandra索引详解
查看>>
字节、字、bit、byte的关系
查看>>
VMware12安装虚拟机教程、Ubuntu16.04安装教程(包括vmware tools的安装)
查看>>